-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
58 lines (58 loc) · 1.45 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
{
"name": "c-snippets",
"displayName": "C Snippets",
"description": "Snippets for the C programming language",
"version": "1.3.3",
"license": "MIT",
"engines": {
"vscode": "^1.44.2"
},
"repository": {
"type": "git",
"url": "https://github.com/Harry-Ross/vscode-c-snippets"
},
"publisher": "Harry-Ross-Software",
"icon": "c_logo.png",
"categories": [
"Snippets",
"Other"
],
"activationEvents": [
"onCommand:extension.helloWorld"
],
"main": "./out/extension.js",
"contributes": {
"snippets": [
{
"language": "c",
"path": "./snippets/snippets.json"
}
]
},
"scripts": {
"vscode:prepublish": "npm run esbuild-base -- --minify",
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./",
"esbuild-base": "esbuild ./src/extension.ts --bundle --outfile=out/main.js --external:vscode --format=cjs --platform=node",
"esbuild": "npm run esbuild-base -- --sourcemap",
"esbuild-watch": "npm run esbuild-base -- --sourcemap --watch",
"test-compile": "tsc -p ./",
"test": "vscode-test",
"lint": "eslint -c .eslintrc.js --ext .ts src"
},
"devDependencies": {
"@types/mocha": "^2.2.42",
"@types/node": "^10.17.49",
"@typescript-eslint/eslint-plugin": "^6.9.1",
"@typescript-eslint/parser": "^6.9.1",
"@vscode/test-cli": "^0.0.4",
"@vscode/test-electron": "^2.3.6",
"esbuild": "^0.19.5",
"eslint": "^8.53.0",
"tslint": "^5.20.1",
"typescript": "^5.2.2"
},
"dependencies": {
"@types/vscode": "^1.84.0"
}
}