-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1.11 KB
/
package.json
File metadata and controls
38 lines (38 loc) · 1.11 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
{
"name": "@layoutit/voxcss-monorepo",
"version": "0.0.0",
"private": true,
"packageManager": "pnpm@10.32.1",
"engines": {
"node": ">=22.12.0"
},
"description": "CSS-based voxel rendering engine monorepo.",
"type": "module",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/LayoutitStudio/voxcss.git"
},
"bugs": {
"url": "https://github.com/LayoutitStudio/voxcss/issues"
},
"homepage": "https://github.com/LayoutitStudio/voxcss#readme",
"scripts": {
"build": "pnpm -r --if-present build",
"build:packages": "pnpm --filter './packages/*' -r build",
"test": "pnpm --filter './packages/*' -r --if-present test",
"test:coverage": "pnpm --filter './packages/*' -r --if-present test:coverage",
"publish:all": "pnpm --filter './packages/*' -r publish --access public",
"dev:website": "pnpm --filter @layoutit/voxcss-website dev",
"build:website": "pnpm --filter @layoutit/voxcss-website build"
},
"pnpm": {
"onlyBuiltDependencies": [
"esbuild",
"sharp"
]
},
"devDependencies": {
"playwright": "^1.58.2"
}
}