forked from assistant-ui/assistant-ui
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 898 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 898 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
34
35
{
"name": "@assistant-ui/monorepo",
"private": true,
"engines": {
"node": ">=24"
},
"scripts": {
"docs:dev": "pnpm --filter=@assistant-ui/docs dev",
"ci:version": "changeset version && pnpm install --no-frozen-lockfile",
"ci:publish": "turbo build --filter=\"./packages/*\" && changeset publish",
"build": "turbo build",
"lint": "pnpm exec biome check",
"lint:fix": "pnpm exec biome check --fix",
"test": "turbo test",
"prepare": "husky"
},
"devDependencies": {
"@biomejs/biome": "^2.3.10",
"@changesets/cli": "^2.29.8",
"husky": "^9.1.7",
"lint-staged": "^16.2.7",
"turbo": "^2.7.0",
"typescript": "^5.9.3"
},
"packageManager": "pnpm@10.26.1",
"lint-staged": {
"*": "biome check --fix --no-errors-on-unmatched"
},
"browserslist": [
"chrome 111",
"edge 111",
"firefox 111",
"safari 16.4"
]
}