-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
29 lines (29 loc) · 1.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
{
"name": "@calcit/procs",
"version": "0.9.6",
"main": "./lib/calcit.procs.mjs",
"devDependencies": {
"@types/node": "^22.8.7",
"typescript": "^5.6.3"
},
"scripts": {
"compile": "rm -rfv lib/* && tsc",
"procs-link": "ln -s ../../ node_modules/@calcit/procs",
"cp-mac": "cargo build --release && rm -rfv builds/* && node scripts/cp-version.js && scp builds/* [email protected]:/web-assets/repo/calcit-lang/binaries/macos/",
"eval": "cargo run --bin cr -- eval",
"check-all": "yarn compile && yarn try-rs && yarn try-js && yarn try-ir",
"try-rs": "cargo run --bin cr -- calcit/test.cirru -1",
"try-js-brk": "cargo run --bin cr -- calcit/test.cirru -1 js && node --inspect-brk js-out/main.mjs",
"try-js": "cargo run --bin cr -- calcit/test.cirru -1 js && node js-out/main.mjs",
"try-ir": "cargo run --bin cr -- calcit/test.cirru -1 js"
},
"repository": {
"type": "git",
"url": "https://github.com/calcit-lang/calcit"
},
"dependencies": {
"@calcit/ternary-tree": "0.0.24",
"@cirru/parser.ts": "^0.0.6",
"@cirru/writer.ts": "^0.1.5"
}
}