-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 1 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
{
"name": "@opensumi/tree-sitter-wasm",
"version": "1.1.2",
"main": "lib/index.js",
"typings": "lib/index.d.ts",
"repository": "[email protected]:opensumi/tree-sitter-wasm.git",
"license": "MIT",
"files": [
"lib",
"*.wasm"
],
"scripts": {
"prepublishOnly": "npm run build",
"build-wasm": "node scripts/build-tree-sitter-parsers.js",
"build": "rm -rf ./lib && tsc",
"watch": "rm -rf ./lib && tsc -w",
"release": "commit-and-tag-version"
},
"dependencies": {
"tslib": "^2.2.0",
"web-tree-sitter": "0.22.6"
},
"devDependencies": {
"@types/node": "^22.5.0",
"commit-and-tag-version": "^12.4.1",
"tree-sitter-go": "0.21.0",
"tree-sitter-java": "0.21.0",
"tree-sitter-javascript": "0.21.2",
"tree-sitter-python": "0.21.0",
"tree-sitter-rust": "0.21.0",
"tree-sitter-typescript": "0.20.5",
"tsx": "^4.19.0",
"typescript": "^5.5.4"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org"
}
}