-
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 1.77 KB
/
Copy pathpackage.json
File metadata and controls
73 lines (73 loc) · 1.77 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
72
73
{
"name": "@modelscript/csv",
"version": "0.0.0",
"type": "module",
"exports": {
"./language": {
"types": "./dist/language.d.ts",
"default": "./dist/language.js"
},
"./parser": {
"types": "./bindings/node/index.d.ts",
"default": "./bindings/node/index.cjs"
},
"./config": {
"types": "./dist/src-gen/config.d.ts",
"default": "./dist/src-gen/config.js"
},
"./query-hooks": {
"types": "./dist/src-gen/query-hooks.d.ts",
"default": "./dist/src-gen/query-hooks.js"
},
"./ast": {
"types": "./dist/src-gen/ast.d.ts",
"default": "./dist/src-gen/ast.js"
},
"./csv-parser": {
"types": "./dist/src/csv-parser.d.ts",
"default": "./dist/src/csv-parser.js"
}
},
"types": "bindings/node",
"files": [
"grammar.js",
"binding.gyp",
"prebuilds/**",
"bindings/node/*",
"queries/*",
"src/**"
],
"scripts": {
"build": "node build.js && tsc",
"clean": "rimraf dist build *.wasm src-gen bindings/node/*.node prebuilds",
"generate": "tree-sitter generate --abi=14 && node-gyp rebuild && tree-sitter build --wasm",
"install": "node-gyp-build",
"prebuildify": "prebuildify --napi --strip",
"prestart": "tree-sitter build --wasm",
"start": "tree-sitter playground"
},
"dependencies": {
"@modelscript/compiler": "*",
"node-addon-api": "^8.5.0",
"node-gyp-build": "^4.8.4"
},
"devDependencies": {
"prebuildify": "^6.0.1",
"tree-sitter": "^0.21.1",
"tree-sitter-cli": "0.26.9"
},
"peerDependencies": {
"tree-sitter": "^0.21.1"
},
"peerDependenciesMeta": {
"tree-sitter": {
"optional": true
}
},
"tree-sitter": [
{
"scope": "source.csv",
"injection-regex": "^csv$"
}
]
}