-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
66 lines (66 loc) · 1.68 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
59
60
61
62
63
64
65
66
{
"name": "sni-ppet",
"displayName": "sni-ppet",
"publisher": "goodbetterbest",
"description": "A progressive intellisense to provide progressive customized snippet code.",
"version": "1.0.0",
"engines": {
"vscode": "^1.59.0"
},
"icon": "logo.png",
"keywords": ["snippet", "code generating", "intellisense", "productivity", "vscode extension"],
"categories": [
"Snippets"
],
"activationEvents": [
"onCommand:Sni-ppet.initialize",
"onStartupFinished"
],
"license": "MIT",
"main": "./out/extension.js",
"contributes": {
"commands": [
{
"command": "Sni-ppet.initialize",
"title": "Sni-ppet.initialize"
},
{
"command": "Sni-ppet.run",
"title": "Sni-ppet.run"
}
]
},
"scripts": {
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./",
"pretest": "yarn run compile && yarn run lint",
"lint": "eslint src --ext ts",
"test": "node ./out/test/runTest.js",
"docs:dev": "vitepress dev docs",
"docs:build": "vitepress build docs",
"docs:serve": "vitepress serve docs",
"ci-docs": "npm run docs:build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/betterRunner/sni-ppet"
},
"devDependencies": {
"@types/glob": "^7.1.3",
"@types/mocha": "^8.2.2",
"@types/node": "14.x",
"@types/vscode": "^1.59.0",
"@typescript-eslint/eslint-plugin": "^4.26.0",
"@typescript-eslint/parser": "^4.26.0",
"eslint": "^7.27.0",
"glob": "^7.1.7",
"mocha": "^8.4.0",
"vitepress": "^0.20.0",
"vscode-test": "^1.5.2"
},
"dependencies": {
"short-uuid": "^4.2.0",
"ts-enum-util": "^4.0.2",
"typescript": "^4.3.2"
}
}