-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 2.25 KB
/
Copy pathpackage.json
File metadata and controls
72 lines (72 loc) · 2.25 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
{
"name": "antigravity-os",
"version": "0.1.0",
"description": "The Autonomous Spec-to-Production Engine",
"private": true,
"bin": {
"ag-os-mcp": "./dist/mcp/cli.js",
"ag-os": "./dist/cli.js"
},
"scripts": {
"dev": "next dev -p 3001",
"build": "next build",
"start": "next start",
"lint": "eslint . --ext .ts,.tsx",
"lint:fix": "eslint . --ext .ts,.tsx --fix",
"format": "prettier --write \"**/*.{ts,tsx,json,md}\"",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"test:properties": "vitest run tests/properties",
"type-check": "tsc --noEmit",
"validate": "powershell -ExecutionPolicy Bypass -File scripts/validate.ps1",
"validate:quick": "powershell -ExecutionPolicy Bypass -File scripts/validate-quick.ps1",
"gateway:start": "tsx src/gateway.ts",
"gateway:build": "tsc src/gateway.ts --outDir dist --module commonjs --target es2020",
"mcp:start": "node dist/mcp/cli.js",
"mcp:dev": "tsx src/mcp/cli.ts",
"mcp:test": "node dist/mcp/cli.js --test",
"mcp:build": "tsc --project tsconfig.mcp.json"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.25.3",
"axios": "^1.13.4",
"cheerio": "^1.2.0",
"clsx": "^2.1.1",
"framer-motion": "^12.27.5",
"lucide-react": "^0.562.0",
"next": "^14.2.0",
"react": "^18.3.0",
"react-dom": "^18.3.0",
"tailwind-merge": "^3.4.0",
"tailwindcss-animate": "^1.0.7",
"zod": "^3.23.0"
},
"devDependencies": {
"@testing-library/dom": "^10.4.1",
"@testing-library/react": "^16.3.2",
"@types/node": "^20.14.0",
"@types/react": "^18.3.0",
"@types/react-dom": "^18.3.0",
"@typescript-eslint/eslint-plugin": "^7.13.0",
"@typescript-eslint/parser": "^7.13.0",
"@vitest/coverage-v8": "^1.6.0",
"autoprefixer": "^10.4.23",
"eslint": "^8.57.0",
"eslint-config-next": "^14.2.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"fast-check": "^3.23.2",
"happy-dom": "^20.3.7",
"jsdom": "^27.0.1",
"postcss": "^8.5.6",
"prettier": "^3.3.0",
"tailwindcss": "^3.4.1",
"tsx": "^4.21.0",
"typescript": "^5.4.5",
"vitest": "^1.6.0"
},
"engines": {
"node": ">=20.0.0"
}
}