-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 1.97 KB
/
Copy pathpackage.json
File metadata and controls
69 lines (69 loc) · 1.97 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
{
"name": "gascity.ts",
"version": "1.0.0",
"private": true,
"description": "TypeScript SDK and Console for Gas City - AI agent orchestration platform",
"type": "module",
"workspaces": [
"packages/@gascity/*",
"apps/*",
"@gascity/*"
],
"scripts": {
"dev": "nx run @gascity/console:dev",
"build": "nx run-many -t build",
"test": "nx run-many -t test",
"lint": "nx run-many -t lint",
"format": "biome check --write .",
"typecheck": "nx run-many -t typecheck",
"prepare": "husky",
"screenshots": "bash docs/screenshots/generate.sh",
"release": "nx release",
"release:dry": "nx release --dry-run",
"release:version": "nx release version",
"release:changelog": "nx release changelog",
"release:publish": "nx release publish"
},
"devDependencies": {
"@eslint/js": "^9.39.4",
"@lovable.dev/vite-tanstack-config": "^2.6.1",
"@nx/js": "^23.0.0",
"@nx/workspace": "^23.0.0",
"@playwright/test": "^1.61.0",
"@tailwindcss/vite": "^4.3.1",
"@tanstack/router-plugin": "^1.168.18",
"@types/node": "^22.20.0",
"@types/react": "^19.2.17",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react": "^6.0.2",
"biome": "^0.3.3",
"eslint": "^9.39.4",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.6",
"eslint-plugin-react-hooks": "^7.1.1",
"eslint-plugin-react-refresh": "^0.5.3",
"globals": "^17.6.0",
"husky": "^9.1.7",
"jsdom": "^29.1.1",
"nitro": "3.0.260610-beta",
"nx": "^23.0.0",
"openapi-typescript-codegen": "^0.31.0",
"oxlint": "^1.70.0",
"playwright": "^1.61.0",
"prettier": "^3.8.4",
"tsdown": "^0.22.3",
"typescript": "^5.9.3",
"typescript-eslint": "^8.61.1",
"vite": "^6.4.3",
"vite-tsconfig-paths": "^6.1.1",
"vitest": "^4.1.9"
},
"engines": {
"node": ">=24.0.0",
"bun": ">=1.3.14"
},
"packageManager": "bun@1.3.14",
"dependencies": {
"eventemitter3": "^5.0.4"
}
}