-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.69 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.69 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
{
"name": "abcp-rnd",
"version": "0.1.0",
"private": true,
"description": "Agentic Browser Control Plane (Personal R&D) — standards-first control plane for observing, explaining, and governing agentic web actions.",
"author": "Jason Lovell",
"license": "Apache-2.0",
"packageManager": "pnpm@9.0.0",
"engines": {
"node": ">=20.11.0",
"pnpm": ">=9.0.0"
},
"scripts": {
"prepare": "test -d .git && lefthook install || true",
"clean": "turbo prune --scope=abcp-rnd --out-dir .turbo-prune && rm -rf node_modules pnpm-lock.yaml .turbo",
"format": "turbo run format",
"lint": "turbo run lint",
"typecheck": "turbo run typecheck",
"test": "turbo run test",
"coverage": "turbo run coverage",
"build": "turbo run build",
"dev": "turbo run dev --parallel",
"storybook": "turbo run storybook --filter=ui",
"e2e": "turbo run e2e",
"docs:dev": "turbo run docs:dev --filter=docs",
"docs:build": "turbo run docs:build --filter=docs",
"docs:serve": "turbo run docs:serve --filter=docs",
"release": "release-please release-pr"
},
"devDependencies": {
"@commitlint/cli": "^20.0.0",
"@commitlint/config-conventional": "^20.0.0",
"@types/node": "^22.8.4",
"lefthook": "^1.7.11",
"lint-staged": "^16.2.6",
"release-please": "^17.1.3",
"@trivago/prettier-plugin-sort-imports": "^5.2.1",
"eslint": "^8.57.0",
"prettier": "^3.4.2",
"eslint-config-prettier": "^9.1.0",
"turbo": "^2.2.3",
"typescript": "^5.9.3",
"typescript-eslint": "^8.46.1"
},
"lint-staged": {
"*.{js,jsx,ts,tsx,json,css,md}": [
"prettier --write"
]
},
"pnpm": {
"overrides": {
"esbuild": "^0.25.11"
}
}
}