-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
31 lines (31 loc) · 975 Bytes
/
package.json
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
{
"name": "cacher-monorepo",
"private": true,
"workspaces": [
"packages/*"
],
"engines": {
"node": ">=14.0.0"
},
"type": "module",
"devDependencies": {
"@biomejs/biome": "^1.6.4",
"@types/node": "^20.12.7",
"rollup": "^4.14.1",
"rollup-plugin-typescript2": "^0.36.0",
"tsx": "^4.7.2",
"typescript": "^5.4.4"
},
"scripts": {
"prepare": "npm run rollup:build && npm run test",
"build": "npm run rollup:build",
"watch": "npm run rollup:watch",
"clean": "rm -rf ./packages/*/lib",
"rollup:build": "NODE_ENV=production rollup -c rollup.config.js",
"rollup:watch": "npm run rollup:build -- -w",
"test": "npm run test:node && npm run lint",
"test:node": "node --import tsx --test packages/*/test/*.test.ts",
"lint": "npm run lint:biome",
"lint:biome": "biome lint --apply ./packages/*/src"
}
}