-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.21 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.21 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
{
"name": "loopwatch-workspace",
"private": true,
"workspaces": ["packages/*"],
"scripts": {
"build": "bun run --filter 'loopwatch' build",
"test": "bun run --filter 'loopwatch' test",
"lint": "bun run --filter 'loopwatch' lint",
"type-check": "bun run --filter 'loopwatch' type-check",
"prepare": "[ -x node_modules/.bin/husky ] && node_modules/.bin/husky || true"
},
"lint-staged": {
"{packages/core/src,packages/core/test}/**/*.ts": [
"eslint --cache --fix",
"prettier --write"
]
},
"prettier": {
"singleQuote": false,
"semi": true,
"printWidth": 100
},
"devDependencies": {
"@rollup/plugin-terser": "^1.0.0",
"@rollup/plugin-typescript": "^12.3.0",
"@playwright/test": "^1.60.0",
"@types/node": "^25.9.0",
"@vitest/coverage-v8": "^4.1.6",
"eslint": "^10.4.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-import-x": "^4.16.2",
"eslint-plugin-unicorn": "^64.0.0",
"happy-dom": "^20.9.0",
"husky": "^9.1.7",
"lint-staged": "^17.0.5",
"prettier": "^3.8.3",
"rollup": "^4.60.4",
"rollup-plugin-dts": "^6.4.1",
"typescript": "^6.0.3",
"typescript-eslint": "^8.59.4",
"vitest": "^4.1.6"
}
}