-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
33 lines (33 loc) · 953 Bytes
/
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
30
31
32
33
{
"name": "ara-cli",
"version": "0.0.1",
"module": "src/index.ts",
"type": "module",
"scripts": {
"clean": "bun run ./ci.ts clean",
"compile": "bun run ./ci.ts build",
"pkg": "bun run ./ci.ts pkg",
"builder": "bun compile && bun pkg",
"archive": "bun run ./ci.ts archive",
"all": "bun builder && bun archive",
"lint": "eslint --config eslint.config.js .",
"check": "eslint --config eslint.config.js . --fix"
},
"devDependencies": {
"@stylistic/eslint-plugin": "^1.5.0",
"@types/tar": "^6.1.10",
"@typescript-eslint/eslint-plugin": "^6.13.2",
"@typescript-eslint/parser": "^6.13.2",
"bun-types": "latest",
"commander": "^11.1.0",
"comment-json": "^4.2.3",
"eslint": "^8.55.0",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-import": "^2.29.0",
"tar": "^6.2.0",
"toml-patch": "^0.2.3"
},
"peerDependencies": {
"typescript": "^5.0.0"
}
}