-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 2.77 KB
/
package.json
File metadata and controls
73 lines (73 loc) · 2.77 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
{
"name": "devagent-ts",
"version": "0.4.3",
"private": true,
"packageManager": "bun@1.3.10",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/egavrin/devagent.git"
},
"bugs": {
"url": "https://github.com/egavrin/devagent/issues"
},
"homepage": "https://github.com/egavrin/devagent#readme",
"engines": {
"bun": ">=1.3.10",
"node": ">=20"
},
"workspaces": [
"packages/*"
],
"scripts": {
"build": "turbo run build",
"test": "turbo run test",
"test:bundle-smoke": "bun run scripts/smoke-publish-bundle.ts",
"test:surface-smoke": "bun test scripts/surface-smoke/*.test.ts",
"lint": "bun run lint:packages && bun run lint:scripts",
"lint:packages": "turbo run lint",
"lint:scripts": "eslint scripts --max-warnings=0",
"typecheck": "turbo run typecheck",
"clean": "turbo run clean",
"dev": "turbo run dev",
"embed": "bun run scripts/embed-assets.ts",
"bundle": "bun run scripts/bundle.ts",
"build:publish": "bun run build && bun run bundle",
"verify:publish": "bun run build:publish && bun run check:publint && bun run test:bundle-smoke",
"install-cli": "cd packages/cli && bun link",
"install-lsp": "bash scripts/install-lsp-servers.sh",
"prepare": "lefthook install",
"check:oss": "node ./scripts/check-oss.mjs",
"check:dead": "knip --no-config-hints",
"check:deps": "dependency-cruiser --config .dependency-cruiser.cjs packages",
"check:workspace": "sherif",
"check:publint": "bun run check:publint:packages && bun run check:publint:bundle",
"check:publint:packages": "publint run packages/runtime && publint run packages/providers && publint run packages/cli",
"check:publint:bundle": "publint run dist --pack false",
"check:quality": "bun run check:workspace && bun run lint && bun run typecheck && bun run check:dead && bun run check:deps",
"validate:live:provider-smoke": "bun run scripts/live-validation/provider-smoke.ts",
"validate:live:tool-script": "bun run scripts/live-validation/tool-script-adoption.ts",
"validate:live:tui": "bun run scripts/live-validation/tui-validator.ts"
},
"devDependencies": {
"@devagent-sdk/types": "file:../devagent-sdk/packages/types",
"@types/better-sqlite3": "^7.6.13",
"@types/bun": "^1.3.10",
"@typescript-eslint/eslint-plugin": "^8.56.1",
"@typescript-eslint/parser": "^8.56.1",
"dependency-cruiser": "^16.8.0",
"eslint": "^9.0.0",
"eslint-import-resolver-typescript": "^4.4.4",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-sonarjs": "^3.0.2",
"knip": "^5.39.0",
"lefthook": "^1.8.4",
"publint": "^0.3.18",
"sherif": "^1.11.1",
"turbo": "^2.5.0",
"typescript": "^5.9.3"
},
"overrides": {
"minimatch@^3": "3.1.3"
}
}