-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 1.98 KB
/
package.json
File metadata and controls
71 lines (71 loc) · 1.98 KB
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
{
"name": "primer-primitives-autocomplete",
"version": "0.1.2",
"displayName": "Autocomplete for Primer Primitives",
"description": "Autocomplete for Primer Primitives",
"publisher": "githubprimer",
"engines": {
"vscode": "^1.79.0"
},
"keywords": [],
"categories": [],
"activationEvents": [
"onStartupFinished"
],
"contributes": {
"menus": {
"editor/context": [
{
"command": "primer-primitives-autocomplete.openDocs",
"group": "navigation@100",
"when": "editorTextFocus && editorHasHoverProvider"
}
]
},
"commands": [
{
"command": "primer-primitives-autocomplete.openDocs",
"title": "Open Primer documentation for variable"
}
]
},
"repository": {
"type": "git",
"url": "https://github.com/primer/primitives-vscode-extension.git"
},
"main": "./dist/index.js",
"scripts": {
"build": "npm run precompile && tsup",
"clean": "rm -rf dist",
"lint": "eslint ./src --ext .ts --fix",
"vsce:publish": "vsce publish",
"test": "vitest",
"test:package": "vsce package",
"precompile": "npx ts-node src/data/precompile.ts"
},
"prettier": "@github/prettier-config",
"dependencies": {},
"devDependencies": {
"@github/prettier-config": "^0.0.6",
"@primer/primitives": "^11.3.1",
"@types/lodash.flatten": "^4.4.9",
"@types/node": "^24.0.0",
"@types/vscode": "^1.79.0",
"@typescript-eslint/eslint-plugin": "8.47.0",
"@typescript-eslint/parser": "8.47.0",
"@vscode/test-electron": "2.5.2",
"@vscode/vsce": "3.7.0",
"csstype": "3.2.3",
"eslint": "8.57.1",
"eslint-config-airbnb-typescript": "18.0.0",
"eslint-plugin-github": "5.1.2",
"lodash.camelcase": "^4.3.0",
"lodash.flatten": "^4.4.0",
"tsup": "8.5.1",
"typescript": "5.9.3",
"vitest": "4.0.10",
"vscode-languageclient": "9.0.1",
"vscode-languageserver": "9.0.1",
"vscode-languageserver-textdocument": "1.0.12"
}
}