-
Notifications
You must be signed in to change notification settings - Fork 28
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 2.19 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 2.19 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
45
46
47
48
{
"name": "tool-ui",
"version": "0.2.0",
"private": true,
"description": "Open source component library for tool call widgets",
"license": "MIT",
"scripts": {
"prepare": "tsx apps/www/scripts/install-git-hooks.ts",
"dev": "pnpm --filter tool-ui-www dev",
"build": "pnpm --filter tool-ui-www build",
"start": "pnpm --filter tool-ui-www start",
"check": "pnpm --filter tool-ui-www check",
"lint": "pnpm --filter tool-ui-www lint",
"lint:fix": "pnpm --filter tool-ui-www lint:fix",
"lint:oxlint": "pnpm --filter tool-ui-www lint:oxlint",
"lint:eslint": "pnpm --filter tool-ui-www lint:eslint",
"lint:format": "pnpm --filter tool-ui-www lint:format",
"typecheck": "pnpm --filter tool-ui-www typecheck",
"test": "pnpm --filter tool-ui-www test",
"test:watch": "pnpm --filter tool-ui-www test:watch",
"format": "pnpm --filter tool-ui-www format",
"format:check": "pnpm --filter tool-ui-www format:check",
"hooks:pre-commit": "pnpm --filter tool-ui-www hooks:pre-commit",
"hooks:pre-push": "pnpm --filter tool-ui-www hooks:pre-push",
"registry:build": "pnpm --filter tool-ui-www registry:build",
"registry:check": "pnpm --filter tool-ui-www registry:check",
"changelog:check": "pnpm --filter tool-ui-www changelog:check",
"changelog:generate": "pnpm --filter tool-ui-www changelog:generate",
"component:new": "pnpm --filter tool-ui-www component:new",
"weather:check": "pnpm --filter tool-ui-www weather:check",
"verify:ci": "pnpm --filter tool-ui-www run check && pnpm --filter tool-ui-www run test && pnpm --filter tool-ui-www run changelog:check && pnpm --filter tool-ui-www run registry:check && pnpm --filter tool-ui-www run weather:check",
"ci:version": "changeset version && pnpm install --no-frozen-lockfile",
"ci:publish": "pnpm --filter './packages/*' build && changeset publish"
},
"devDependencies": {
"@changesets/cli": "^2.29.8",
"lint-staged": "^16.4.0",
"tsx": "^4.21.0"
},
"engines": {
"node": ">=20",
"pnpm": ">=8.0.0"
},
"lint-staged": {
"apps/www/**/*.{ts,tsx,js,jsx,mjs,cjs,css,json,jsonc}": "npx oxfmt --no-error-on-unmatched-pattern"
},
"packageManager": "pnpm@10.11.0"
}