-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.13 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.13 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
{
"name": "issuex",
"version": "0.0.1",
"description": "IssueX - Structured issue tracking for AI agents",
"private": true,
"type": "module",
"workspaces": [
"packages/*",
"bdd"
],
"scripts": {
"build": "turbo build",
"check": "biome check .",
"check:fix": "biome check --write .",
"lint": "biome lint .",
"format": "biome format --write .",
"format:check": "biome format .",
"typecheck": "turbo typecheck",
"test": "turbo test",
"test:bdd": "cd bdd && bun run test",
"clean": "turbo clean && rm -rf node_modules",
"prepare": "lefthook install || true",
"version": "changeset version",
"release": "changeset publish"
},
"author": "Deepractice",
"license": "Apache-2.0",
"packageManager": "bun@1.3.5",
"devDependencies": {
"@biomejs/biome": "^2.4.0",
"@changesets/cli": "^2.29.7",
"@commitlint/cli": "^20.1.0",
"@commitlint/config-conventional": "^20.0.0",
"@types/node": "^22.0.0",
"bun-dts": "0.1.70",
"lefthook": "^1.13.6",
"turbo": "^2.5.8",
"typescript": "^5.9.3"
},
"engines": {
"node": ">=22.0.0",
"bun": ">=1.3.0"
}
}