-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.54 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.54 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
{
"name": "@adahiya/raga-cli",
"version": "0.5.1",
"type": "module",
"bin": "bin/cli.sh",
"scripts": {
"build": "tsc",
"check-lint": "eslint .",
"check-types": "tsc --noEmit",
"clean": "rm -rf lib/ bin/standalone/",
"dist": "echo '[raga-cli] HACKHACK: skipping deno build which fails in CI' && exit 0",
"dist:all": "yarn dist:arm && yarn dist:x86",
"dist:arm": "deno compile --v8-flags=--max-heap-size=4096 --allow-env --allow-sys --allow-read --allow-write --target aarch64-apple-darwin --output bin/standalone/darwin-arm src/main.mts",
"dist:x86": "deno compile --v8-flags=--max-heap-size=4096 --allow-env --allow-sys --allow-read --allow-write --target x86_64-apple-darwin --output bin/standalone/darwin-x86 src/main.mts",
"lint-fix": "eslint --fix .",
"publish-npm": "npm publish --access public",
"run-deno": "deno run --v8-flags=--max-heap-size=4096 --allow-env --allow-sys --allow-read --allow-write src/main.mts",
"run-node": "node lib/main.mjs"
},
"dependencies": {
"@adahiya/raga-lib": "workspace:^",
"dedent": "^1.7.1",
"minimist": "^1.2.8",
"prompts": "^2.4.2"
},
"devDependencies": {
"@types/dedent": "^0.7.2",
"@types/node": "^24.10.4",
"@types/prompts": "^2.4.9",
"eslint": "^10.0.0",
"typescript": "^5.9.3"
},
"engines": {
"node": ">=24"
},
"author": {
"name": "Adi Dahiya",
"email": "adi.dahiya14@gmail.com"
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/adidahiya/raga.git"
},
"license": "MIT"
}