-
Notifications
You must be signed in to change notification settings - Fork 19
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.78 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.78 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
49
50
51
52
53
54
55
56
{
"name": "pinchy",
"version": "0.4.4",
"private": true,
"description": "Enterprise AI agent platform built on OpenClaw",
"scripts": {
"dev": "pnpm --filter @pinchy/web dev",
"build": "pnpm --filter @pinchy/web build",
"test": "pnpm --filter @pinchy/web test",
"test:scripts": "node --test scripts/lib/*.test.mjs",
"release": "node scripts/release.mjs",
"docs:paths": "node scripts/generate-docs-paths.mjs",
"prepare": "husky"
},
"keywords": [],
"author": "Clemens Helm",
"license": "AGPL-3.0",
"packageManager": "pnpm@10.33.0",
"devDependencies": {
"husky": "^9.1.7",
"lint-staged": "^16.4.0"
},
"pnpm": {
"overrides": {
"rollup@>=4.0.0 <4.59.0": ">=4.59.0",
"esbuild@<=0.24.2": ">=0.25.0",
"undici@>=7.0.0 <7.24.0": ">=7.24.0",
"kysely@>=0.26.0 <=0.28.13": ">=0.28.14",
"picomatch@<2.3.2": ">=2.3.2",
"picomatch@>=4.0.0 <4.0.4": ">=4.0.4",
"yaml@>=2.0.0 <2.8.3": ">=2.8.3",
"defu@<=6.1.4": ">=6.1.5",
"brace-expansion@<1.1.13": "^1.1.13",
"flatted@<3.4.2": "^3.4.2",
"typescript-eslint@>=8.0.0 <8.58.2": ">=8.58.2",
"@typescript-eslint/parser@>=8.0.0 <8.58.2": ">=8.58.2",
"@typescript-eslint/eslint-plugin@>=8.0.0 <8.58.2": ">=8.58.2",
"@typescript-eslint/typescript-estree@>=8.0.0 <8.58.2": ">=8.58.2",
"postcss@<8.5.10": ">=8.5.10"
}
},
"lint-staged": {
"packages/web/src/**/*.{ts,tsx}": [
"pnpm -C packages/web exec eslint --no-warn-ignored"
],
"packages/web/**/*.{ts,tsx,js,mjs,cjs,json,css,md}": [
"pnpm -C packages/web exec prettier --write"
],
"docs/src/**/*.{mdx,md}": [
"pnpm -C packages/web exec prettier --write"
],
".github/**/*.yml": [
"pnpm -C packages/web exec prettier --write"
]
}
}