-
Notifications
You must be signed in to change notification settings - Fork 39
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 950 Bytes
/
package.json
File metadata and controls
41 lines (41 loc) · 950 Bytes
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
{
"name": "@agentscript/parser-javascript",
"version": "2.4.0",
"license": "Apache-2.0",
"description": "Hand-written TypeScript parser for AgentScript language",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
}
},
"files": [
"dist",
"src"
],
"scripts": {
"build": "tsc",
"test": "vitest run",
"test:watch": "vitest",
"test:update": "vitest run -u",
"bench": "vitest bench",
"perf": "tsx test/run-perf.ts",
"perf:report": "tsx test/run-perf.ts --report"
},
"dependencies": {
"@agentscript/types": "workspace:*",
"tiny-invariant": "^1.3.3"
},
"devDependencies": {
"@agentscript/parser-tree-sitter": "workspace:*",
"csv-parse": "^6.2.1",
"tree-sitter": "^0.25.0",
"vitest": "^3.0.0"
},
"publishConfig": {
"access": "public"
}
}