-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 880 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 880 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
32
{
"name": "linproj",
"version": "0.7.0",
"description": "CLI for Linear",
"module": "src/index.ts",
"type": "module",
"private": true,
"packageManager": "bun@1.3.8",
"scripts": {
"preinstall": "bun scripts/check-bun-version.ts",
"dev": "bun run src/index.ts",
"build": "bun build ./src/index.ts --compile --outfile build/linproj",
"build:release": "bun build ./src/index.ts --compile --minify --outfile build/linproj",
"test": "bun test"
},
"dependencies": {
"commander": "^14.0.2",
"js-yaml": "^4.1.1"
},
"devDependencies": {
"@pollyjs/adapter-fetch": "^6.0.7",
"@pollyjs/adapter-node-http": "^6.0.6",
"@pollyjs/core": "^6.0.6",
"@pollyjs/persister-fs": "^6.0.6",
"@types/bun": "1.3.8",
"@types/js-yaml": "^4.0.9",
"@types/node": "^25.0.10"
},
"peerDependencies": {
"typescript": "^5"
}
}