-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 928 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 928 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
33
{
"name": "rustrak",
"private": true,
"scripts": {
"ci": "turbo run test build lint format:check",
"build": "turbo run build",
"build:dev": "turbo run build:dev",
"build:docs": "turbo run build --filter=docs",
"dev": "turbo run dev",
"dev:docs": "turbo run dev --filter=docs",
"test": "turbo run test",
"lint": "turbo run lint",
"format": "turbo run format",
"format:check": "turbo run format:check",
"check-types": "turbo run check-types",
"clean": "turbo run clean",
"changeset": "changeset",
"version-packages": "changeset version",
"release": "changeset publish"
},
"devDependencies": {
"@biomejs/biome": "2.4.13",
"@changesets/changelog-github": "0.6.0",
"@changesets/cli": "2.31.0",
"bmad-method": "6.5.0",
"turbo": "2.9.6",
"typescript": "6.0.3"
},
"packageManager": "pnpm@10.33.2",
"engines": {
"node": ">=22"
}
}