-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 1.13 KB
/
package.json
File metadata and controls
36 lines (36 loc) · 1.13 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
{
"name": "paula",
"version": "0.1.0",
"type": "module",
"private": true,
"description": "AI Agent worker management CLI tool",
"scripts": {
"build": "pnpm -r build",
"dev": "pnpm -r --parallel dev",
"clean": "pnpm -r clean && rm -rf node_modules",
"lint": "pnpm -r lint",
"type-check": "pnpm -r type-check",
"test:unit": "pnpm -r test:unit",
"test": "pnpm test:unit && pnpm test:integration",
"test:watch": "pnpm -r test:watch",
"test:coverage": "pnpm -r test:coverage",
"test:integration": "pnpm build && pnpm --filter @paula/integration test:integration"
},
"devDependencies": {
"@eslint/js": "^9.38.0",
"@types/node": "^20.0.0",
"eslint": "^9.38.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^7.0.1",
"prettier": "^3.6.2",
"tsup": "^8.5.0",
"tsx": "^4.7.0",
"typescript": "^5.3.0",
"typescript-eslint": "^8.46.2"
},
"engines": {
"node": ">=20.0.0",
"pnpm": ">=9.0.0"
}
}