-
Notifications
You must be signed in to change notification settings - Fork 32
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 2.02 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 2.02 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
57
58
59
60
61
62
63
64
65
{
"name": "agentscript-monorepo",
"version": "2.0.0",
"license": "Apache-2.0",
"private": true,
"description": "AgentScript language and toolchain monorepo",
"type": "module",
"scripts": {
"build": "turbo run build",
"test": "turbo run test",
"lint": "turbo run lint",
"format": "prettier --write .",
"format:check": "prettier --check .",
"typecheck": "turbo run typecheck",
"clean": "turbo run clean",
"extract-diagnostics": "tsx scripts/extract-diagnostics.ts",
"dev": "turbo run dev --parallel",
"docs:dev": "pnpm --filter @agentscript/docs dev",
"docs:build": "pnpm --filter @agentscript/docs build",
"docs:serve": "pnpm --filter @agentscript/docs serve",
"docs:typedoc": "typedoc",
"ui:dev": "pnpm --filter @agentscript/ui dev",
"changeset": "changeset",
"changeset:version": "changeset version",
"changeset:status": "changeset status",
"heroku-postbuild": "corepack enable && pnpm install --frozen-lockfile && DOCS_BASE_PATH=/docs/ pnpm run build && cp -r apps/docs/build apps/ui/dist/docs",
"start": "node server.mjs",
"test:server-path-traversal": "node scripts/test-path-traversal.mjs",
"prepare": "husky"
},
"devDependencies": {
"@changesets/cli": "^2.30.0",
"@types/node": "^20.19.37",
"@typescript-eslint/eslint-plugin": "^8.57.0",
"@typescript-eslint/parser": "^8.57.0",
"@vitest/coverage-v8": "^3.2.4",
"eslint": "^9.39.4",
"eslint-plugin-react-hooks": "^7.0.1",
"eslint-plugin-react-refresh": "^0.4.26",
"globals": "^16.5.0",
"husky": "^9.1.7",
"lint-staged": "^15.5.2",
"prettier": "^3.8.1",
"tsx": "^4.21.0",
"turbo": "^2.8.16",
"typedoc": "0.26.11",
"typedoc-plugin-markdown": "4.2.10",
"typescript": "^5.9.3",
"typescript-eslint": "^8.57.0",
"yaml": "^2.8.2"
},
"engines": {
"node": ">=18.0.0",
"pnpm": ">=8.0.0"
},
"pnpm": {
"overrides": {
"vite": "^7.3.2"
}
},
"packageManager": "pnpm@10.28.0",
"volta": {
"node": "22.22.1"
}
}