-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
76 lines (76 loc) · 2.15 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
67
68
69
70
71
72
73
74
75
76
{
"name": "vscode-types-for-adobe",
"displayName": "Types for Adobe",
"description": "Types-for-Adobe in Visual Studio Code.",
"version": "0.1.1",
"author": "Il Harper <[email protected]>",
"publisher": "il-harper",
"engines": {
"vscode": "^1.52.0"
},
"categories": [
"Linters",
"Programming Languages",
"Other"
],
"license": "See LICENSE",
"homepage": "https://github.com/Afanyiyu/vscode-types-for-adobe/blob/master/README.md",
"bugs": {
"url": "https://github.com/Afanyiyu/vscode-types-for-adobe/issues",
"email": "[email protected]"
},
"repository": {
"type": "git",
"url": "https://github.com/Afanyiyu/vscode-types-for-adobe.git"
},
"activationEvents": [
"onCommand:vscode-types-for-adobe.set-up"
],
"main": "./out/extension.js",
"contributes": {
"title": "Types for Adobe",
"commands": [
{
"command": "vscode-types-for-adobe.set-up",
"title": "Set-Up Types for Adobe",
"category": "Types for Adobe"
}
],
"menus": {
"commandPalette": [
{
"command": "vscode-types-for-adobe.set-up",
"when": "editorLangId == javascript || editorLangId == javascriptreact || editorLangId == typescript || editorLangId == typescriptreact || editorLangId == jsx"
}
]
}
},
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./",
"pretest": "npm run compile && npm run lint",
"deploy": "vsce publish",
"lint": "eslint src --ext .js,.ts,.json --ignore-path .gitignore --fix",
"test": "node ./out/test/runTest.js"
},
"devDependencies": {
"@types/glob": "^7.1.3",
"@types/mocha": "^8.2.2",
"@types/node": "14.x",
"@types/vscode": "^1.52.0",
"@typescript-eslint/eslint-plugin": "^4.26.0",
"@typescript-eslint/parser": "^4.26.0",
"eslint": "^7.27.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^3.4.0",
"glob": "^7.1.7",
"mocha": "^8.4.0",
"prettier": "^2.3.2",
"typescript": "^4.3.2",
"vscode-test": "^1.5.2"
},
"dependencies": {
"types-for-adobe": "^6.0.1"
}
}