-
Notifications
You must be signed in to change notification settings - Fork 39
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.22 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.22 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
{
"name": "@agentscript/parser",
"version": "4.0.0",
"license": "Apache-2.0",
"description": "Parser interface with configurable backend (parser-javascript or tree-sitter)",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"tree-sitter": {
"import": "./dist/index.tree-sitter.js",
"types": "./dist/index.tree-sitter.d.ts"
},
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
}
},
"files": [
"dist",
"src"
],
"scripts": {
"build": "tsc",
"test": "vitest run --passWithNoTests",
"test:watch": "vitest",
"clean": "rm -rf dist"
},
"dependencies": {
"@agentscript/types": "workspace:*",
"@agentscript/parser-javascript": "workspace:*"
},
"peerDependencies": {
"@agentscript/parser-tree-sitter": "workspace:*",
"tree-sitter": "^0.25.0",
"web-tree-sitter": ">=0.22.0"
},
"peerDependenciesMeta": {
"@agentscript/parser-tree-sitter": {
"optional": true
},
"tree-sitter": {
"optional": true
},
"web-tree-sitter": {
"optional": true
}
},
"devDependencies": {
"vitest": "^3.0.0"
},
"publishConfig": {
"access": "public"
}
}