-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (32 loc) · 898 Bytes
/
package.json
File metadata and controls
33 lines (32 loc) · 898 Bytes
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
{
"name": "agent-patterns",
"version": "0.1.0",
"private": true,
"description": "Open-source, copy-paste pattern library for LLM-generated UIs",
"scripts": {
"build": "pnpm -r build",
"dev": "pnpm -r --parallel dev",
"test": "vitest",
"test:coverage": "vitest --coverage",
"lint": "eslint .",
"typecheck": "tsc --noEmit --strict",
"clean": "pnpm -r clean && rm -rf node_modules"
},
"devDependencies": {
"@testing-library/react": "^14.1.2",
"@testing-library/jest-dom": "^6.1.5",
"@types/node": "^20.11.0",
"@types/react": "^18.2.48",
"@typescript-eslint/eslint-plugin": "^6.19.0",
"@typescript-eslint/parser": "^6.19.0",
"@vitejs/plugin-react": "^4.2.1",
"eslint": "^8.56.0",
"jsdom": "^23.0.1",
"typescript": "^5.3.3",
"vitest": "^1.2.0"
},
"engines": {
"node": ">=18.0.0",
"pnpm": ">=8.0.0"
}
}