-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
96 lines (96 loc) · 2.97 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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
{
"name": "spicedb",
"displayName": "SpiceDB",
"version": "0.0.0",
"description": "SpiceDB for VS Code",
"categories": [
"Other"
],
"keywords": [
"spicedb",
"authzed"
],
"repository": {
"type": "git",
"url": "https://github.com/nhedger/vscode-spicedb.git"
},
"license": "GPL-3.0-only",
"author": {
"name": "Nicolas Hedger",
"email": "nicolas@hedger.ch"
},
"publisher": "nhedger",
"main": "./out/extension/node/extension.js",
"browser": "./out/extension/web/extension.js",
"scripts": {
"build": "webpack build",
"build:node": "webpack build --config webpack.node.config.ts",
"build:web": "webpack build --config webpack.web.config.ts",
"format": "prettier --write .",
"lint": "eslint .",
"package": "vsce package",
"prepare": "lefthook install",
"test": "npm run test:web && npm run test:node",
"test:browser": "vscode-test-web --browserType=chromium --extensionDevelopmentPath=. ./test/fixtures/test-workspace --waitForDebugger=9229",
"test:node": "node ./out/test-script.js --env node",
"test:web": "node ./out/test-script.js --env web",
"watch": "webpack watch",
"watch:node": "webpack watch --config webpack.node.config.ts",
"watch:web": "webpack watch --config webpack.web.config.ts"
},
"contributes": {
"languages": [
{
"id": "zed",
"extensions": [
".zed"
],
"configuration": "./languages/zed.language-configuration.json"
}
]
},
"activationEvents": [
"*",
"onLanguage:zed"
],
"devDependencies": {
"@types/chai": "4.3.4",
"@types/glob": "8.0.0",
"@types/mocha": "10.0.0",
"@types/node": "18.7.23",
"@types/vscode": "1.74.0",
"@types/webpack": "5.28.0",
"@types/webpack-env": "1.18.0",
"@types/webpack-node-externals": "2.5.3",
"@typescript-eslint/eslint-plugin": "5.47.1",
"@typescript-eslint/parser": "5.47.1",
"@vscode/test-electron": "2.2.1",
"@vscode/test-web": "0.0.30",
"chai": "4.3.7",
"clean-webpack-plugin": "4.0.0",
"commander": "9.4.1",
"eslint": "8.24.0",
"glob": "8.0.3",
"lefthook": "1.1.1",
"mocha": "10.1.0",
"node-loader": "2.0.0",
"prettier": "2.7.1",
"prettier-plugin-packagejson": "2.3.0",
"ts-loader": "9.4.1",
"ts-node": "10.9.1",
"typescript": "4.8.4",
"vsce": "2.11.0",
"webpack": "5.74.0",
"webpack-cli": "4.10.0",
"webpack-node-externals": "3.0.0"
},
"engines": {
"vscode": "^1.69.0"
},
"galleryBanner": {},
"preview": true,
"vsce": {
"baseImagesUrl": "https://github.com/nhedger/vscode-spicedb",
"dependencies": false
}
}