-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 2.01 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 2.01 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
{
"name": "@arcp/workspace",
"version": "0.1.0",
"private": true,
"description": "Workspace root for the Agent Runtime Control Protocol (ARCP) TypeScript SDK packages.",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "git+https://github.com/agentruntimecontrolprotocol/typescript-sdk.git"
},
"homepage": "https://github.com/agentruntimecontrolprotocol/typescript-sdk#readme",
"bugs": {
"url": "https://github.com/agentruntimecontrolprotocol/typescript-sdk/issues"
},
"packageManager": "pnpm@9.15.0",
"type": "module",
"engines": {
"node": ">=22"
},
"scripts": {
"build": "tsc -b && node packages/core/scripts/copy-assets.mjs",
"clean": "tsc -b --clean && rimraf packages/*/dist packages/middleware/*/dist",
"typecheck": "pnpm -r --workspace-concurrency=1 run typecheck",
"lint": "biome lint . && eslint .",
"lint:fix": "biome lint --write . && eslint . --fix",
"lint:biome": "biome lint .",
"lint:eslint": "eslint .",
"format": "prettier --write .",
"format:check": "prettier --check .",
"test": "pnpm -r --workspace-concurrency=1 run test",
"test:coverage": "pnpm -r --workspace-concurrency=1 run test:coverage",
"prepare": "simple-git-hooks || true"
},
"devDependencies": {
"@biomejs/biome": "^2.4.15",
"@eslint/js": "^9.39.4",
"@types/node": "^22.7.5",
"@vitest/coverage-v8": "^2.1.2",
"eslint": "^9.39.4",
"eslint-config-prettier": "^10.1.8",
"eslint-import-resolver-typescript": "^4.4.4",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-n": "^18.0.1",
"eslint-plugin-unicorn": "^64.0.0",
"prettier": "^3.8.3",
"rimraf": "^6.0.1",
"simple-git-hooks": "^2.11.1",
"tsx": "^4.19.1",
"typescript": "^5.6.2",
"typescript-eslint": "^8.59.3",
"vitest": "^2.1.2"
},
"simple-git-hooks": {
"pre-commit": "pnpm lint && pnpm typecheck && pnpm test"
},
"pnpm": {
"onlyBuiltDependencies": [
"better-sqlite3",
"simple-git-hooks",
"esbuild"
]
}
}