-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 2.27 KB
/
package.json
File metadata and controls
74 lines (74 loc) · 2.27 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
{
"name": "argus",
"version": "2026.4.12",
"private": true,
"description": "The design intelligence runtime for AI agents. Give your agent eyes.",
"author": "Dragoon <dragoon0x@github.com>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/dragoon0x/argus.git"
},
"homepage": "https://argus.design",
"bugs": {
"url": "https://github.com/dragoon0x/argus/issues"
},
"keywords": [
"design",
"ai",
"agent",
"design-system",
"mcp",
"inspector",
"scoring",
"accessibility",
"css",
"typography",
"design-intelligence",
"design-tools"
],
"engines": {
"node": ">=20.0.0",
"pnpm": ">=9.0.0"
},
"packageManager": "pnpm@9.15.0",
"scripts": {
"build": "pnpm -r --filter './packages/*' run build",
"build:apps": "pnpm -r --filter './apps/*' run build",
"build:all": "pnpm build && pnpm build:apps",
"dev": "pnpm -r --parallel --filter './packages/*' run dev",
"test": "vitest run",
"test:watch": "vitest watch",
"test:inspector": "vitest run --config vitest.inspector.config.ts",
"test:scorer": "vitest run --config vitest.scorer.config.ts",
"test:memory": "vitest run --config vitest.memory.config.ts",
"test:protocol": "vitest run --config vitest.protocol.config.ts",
"test:integration": "vitest run --config vitest.integration.config.ts",
"test:all": "pnpm test && pnpm test:integration",
"lint": "oxlint --config .oxlintrc.json .",
"lint:fix": "oxlint --config .oxlintrc.json --fix .",
"format": "prettier --write .",
"format:check": "prettier --check .",
"typecheck": "tsc --noEmit",
"clean": "rimraf packages/*/dist apps/*/dist",
"doctor": "pnpm argus doctor",
"argus": "tsx apps/cli/src/index.ts",
"gateway": "tsx apps/gateway/src/index.ts",
"gateway:watch": "tsx watch apps/gateway/src/index.ts",
"mcp": "tsx apps/mcp-server/src/index.ts",
"prepare": "pnpm build",
"release": "changeset publish",
"version": "changeset version"
},
"devDependencies": {
"@changesets/cli": "^2.27.0",
"@types/node": "^22.0.0",
"oxlint": "^0.16.0",
"prettier": "^3.4.0",
"rimraf": "^6.0.0",
"tsup": "^8.0.0",
"tsx": "^4.19.0",
"typescript": "^5.7.0",
"vitest": "^3.0.0"
}
}