-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
80 lines (80 loc) · 2.27 KB
/
package.json
File metadata and controls
80 lines (80 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
75
76
77
78
79
80
{
"name": "@detergent-software/atk-web",
"version": "0.0.0",
"private": true,
"type": "module",
"description": "Agentic Toolkit Web — browser UI for the ATK registry.",
"repository": {
"type": "git",
"url": "https://github.com/EmergentSoftware/agentic-toolkit-web.git"
},
"engines": {
"node": ">=24.0.0"
},
"packageManager": "pnpm@10.5.2",
"pnpm": {
"onlyBuiltDependencies": [
"esbuild"
]
},
"scripts": {
"dev": "vite",
"build": "tsc --noEmit && vite build",
"preview": "vite preview",
"lint": "eslint src/",
"lint:fix": "eslint src/ --fix --cache",
"typecheck": "tsc --noEmit",
"format": "prettier --write \"src/**/*.{ts,tsx,css}\"",
"format:check": "prettier --check \"src/**/*.{ts,tsx,css}\"",
"test": "vitest run",
"test:watch": "vitest",
"sync-schemas": "tsx scripts/sync-schemas.ts"
},
"dependencies": {
"@base-ui-components/react": "^1.0.0-beta.0",
"@octokit/rest": "^22.0.1",
"@tanstack/react-form": "^1.29.0",
"@tanstack/react-query": "^5.59.0",
"@tanstack/react-table": "^8.21.3",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"jszip": "^3.10.1",
"lucide-react": "^0.460.0",
"nuqs": "^2.8.9",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"react-markdown": "^10.1.0",
"react-router": "^7.0.0",
"rehype-highlight": "^7.0.2",
"rehype-sanitize": "^6.0.0",
"remark-gfm": "^4.0.1",
"semver": "^7.7.0",
"tailwind-merge": "^2.5.5",
"zod": "^4.0.0"
},
"devDependencies": {
"@eslint/js": "^9.0.0",
"@tailwindcss/vite": "^4.0.0",
"@testing-library/jest-dom": "^6.6.0",
"@testing-library/react": "^16.0.0",
"@types/node": "^24.0.0",
"@types/react": "^19.0.0",
"@types/react-dom": "^19.0.0",
"@types/semver": "^7.7.0",
"@vitejs/plugin-react": "^4.3.4",
"@vitest/eslint-plugin": "^1.0.0",
"eslint": "^9.0.0",
"eslint-config-prettier": "^10.0.0",
"eslint-plugin-perfectionist": "^5.0.0",
"eslint-plugin-react": "^7.37.0",
"eslint-plugin-react-hooks": "^7.0.0",
"jsdom": "^28.0.0",
"prettier": "^3.4.0",
"tailwindcss": "^4.0.0",
"tsx": "^4.21.0",
"typescript": "^5.7.0",
"typescript-eslint": "^8.0.0",
"vite": "^6.0.0",
"vitest": "^4.0.0"
}
}