-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
31 lines (31 loc) · 987 Bytes
/
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
{
"name": "vscode-textmate-scope-selector",
"collaborators": [
"vsce-toolroom <[email protected]>"
],
"description": "WASM binding for Textmate scope selector PEG (parser grammar)",
"version": "0.1.0",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/vsce-toolroom/vscode-textmate-scope-selector"
},
"main": "release/main.js",
"types": "main.d.ts",
"devDependencies": {
"dts-bundle-generator": "^9.5.1",
"shelljs": "^0.8.5",
"typescript": "^4.4.3",
"webpack": "^5.75.0",
"webpack-cli": "^5.0.0"
},
"scripts": {
"test": "node ./test/index.test.js",
"build-wasm": "node ./scripts/wasm.js",
"build-tsc": "tsc -p tsconfig.json",
"build-dts": "dts-bundle-generator -o main.d.ts src/index.ts --umd-module-name selector",
"watch-tsc": "tsc -w -p tsconfig.json",
"package": "npm run build-tsc && webpack && npm run build-wasm",
"prepublishOnly": "npm run package"
}
}