-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1.26 KB
/
package.json
File metadata and controls
38 lines (38 loc) · 1.26 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
{
"name": "linear-agent-cli",
"private": true,
"packageManager": "pnpm@10.32.1",
"engines": {
"node": ">=22"
},
"scripts": {
"build": "turbo run build",
"clean": "turbo run clean && rm -rf coverage",
"format": "biome format --write .",
"lint": "biome lint .",
"lint:fix": "biome lint --write .",
"check": "biome check .",
"check:write": "biome check --write .",
"typecheck": "turbo run typecheck",
"test": "turbo run test",
"test:watch": "vitest --config vitest.workspace.ts",
"verify": "pnpm check:write && pnpm typecheck && pnpm test",
"release:pre": "semantic-release --extends ./.releaserc.prerelease.cjs",
"release:prod": "semantic-release --extends ./.releaserc.release.cjs"
},
"devDependencies": {
"@biomejs/biome": "^2.4.7",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/commit-analyzer": "^13.0.1",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^12.0.6",
"@semantic-release/npm": "^13.1.5",
"@semantic-release/release-notes-generator": "^14.1.0",
"@types/node": "^25.5.0",
"conventional-changelog-conventionalcommits": "^9.3.0",
"semantic-release": "^25.0.3",
"turbo": "^2.8.17",
"typescript": "^5.9.3",
"vitest": "^4.1.0"
}
}