-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 854 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 854 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
{
"name": "brane",
"version": "0.0.1",
"type": "module",
"main": "src/index.ts",
"bin": {
"brane": "src/cli.ts"
},
"scripts": {
"setup": "bun install && cd node_modules/cozo-node/cozo-lib-nodejs && npm run install",
"build": "mkdir -p bin && bun build src/cli.ts --compile --outfile bin/brane",
"repl": "bun run src/cli.ts repl",
"test": "bun test",
"test:tc": "bun run src/tc.ts",
"test:v": "bun run src/tc.ts -v",
"test:s": "bun run src/tc.ts -s",
"cli": "bun run src/cli.ts"
},
"devDependencies": {
"@types/bun": "latest",
"@types/js-yaml": "^4.0.9",
"typescript": "^5.0.0"
},
"dependencies": {
"citty": "^0.2.0",
"cozo-node": "github:ahoward/cozo#feat/bundler-entry-point",
"js-yaml": "^4.1.1",
"tree-sitter-wasms": "0.1.13",
"web-tree-sitter": "0.25.3"
}
}