-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.57 KB
/
Copy pathpackage.json
File metadata and controls
53 lines (53 loc) · 1.57 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
{
"name": "@linkrunner/cli",
"version": "0.1.2",
"description": "Linkrunner CLI for SDK integration, validation, and debugging",
"bin": {
"lr": "./bin/lr.js"
},
"scripts": {
"build": "bun build src/index.ts --outdir dist --target bun",
"build:binary": "bun run scripts/build.ts",
"build:binary:local": "bun build src/index.ts --compile --outfile dist/lr",
"dev": "bun run src/index.ts",
"dev:watch": "bun --watch run src/index.ts",
"dev:doctor": "bun run src/index.ts doctor",
"dev:init": "bun run src/index.ts init",
"dev:test": "bun run src/index.ts test",
"dev:login": "bun run src/index.ts login",
"link:local": "bun link",
"typecheck": "tsc --noEmit",
"lint": "eslint src/",
"lint:fix": "eslint src/ --fix",
"format": "prettier --write 'src/**/*.ts'",
"test": "vitest run",
"test:watch": "vitest",
"check": "tsc --noEmit && eslint src/"
},
"author": "Darshil Rathod <darshilrathod0@gmail.com>",
"license": "MIT",
"dependencies": {
"chalk": "^5.3.0",
"commander": "^12.1.0",
"conf": "^13.0.1",
"fast-xml-parser": "^4.5.0",
"inquirer": "^12.1.0",
"open": "^10.1.0",
"ora": "^8.1.1",
"plist": "^3.1.0",
"yaml": "^2.6.1",
"zod": "^3.24.1"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@types/node": "^22.10.0",
"@types/plist": "^3.0.5",
"bun-types": "^1.1.0",
"eslint": "^10.0.2",
"eslint-config-prettier": "^10.1.8",
"prettier": "^3.8.1",
"typescript": "^5.7.0",
"typescript-eslint": "^8.56.1",
"vitest": "^4.0.18"
}
}