-
Notifications
You must be signed in to change notification settings - Fork 47
Expand file tree
/
Copy pathpackage.json
More file actions
85 lines (85 loc) · 2.52 KB
/
Copy pathpackage.json
File metadata and controls
85 lines (85 loc) · 2.52 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
{
"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"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
],
"rules": {
"header-max-length": [
2,
"always",
140
],
"subject-case": [
0
]
}
},
"devDependencies": {
"@changesets/cli": "^2.30.0",
"@commitlint/cli": "^19.8.1",
"@commitlint/config-conventional": "^19.8.1",
"@grpc/grpc-js": "^1.14.4",
"@qiwi/multi-semantic-release": "^7.1.2",
"@semantic-release/git": "^10.0.1",
"@types/node": "^20.19.41",
"@typescript-eslint/eslint-plugin": "^8.59.3",
"@typescript-eslint/parser": "^8.59.3",
"@vitest/coverage-v8": "^3.2.6",
"eslint": "^9.39.4",
"eslint-plugin-react-hooks": "^7.1.1",
"eslint-plugin-react-refresh": "^0.4.26",
"gh-pages": "^6.3.0",
"globals": "^16.5.0",
"husky": "^9.1.7",
"lint-staged": "^15.5.2",
"playwright": "^1.49.0",
"prettier": "^3.8.3",
"protobufjs": "^8.5.0",
"semantic-release": "^21.1.2",
"tsx": "^4.21.0",
"turbo": "^2.9.12",
"typedoc": "0.26.11",
"typedoc-plugin-markdown": "4.2.10",
"typescript": "^5.9.3",
"typescript-eslint": "^8.59.3",
"vitest": "^3.2.4",
"yaml": "^2.9.0"
},
"engines": {
"node": ">=18.0.0",
"pnpm": ">=8.0.0"
},
"packageManager": "pnpm@10.28.0",
"volta": {
"node": "22.22.1"
}
}