forked from LayoutitStudio/voxcss
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.62 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.62 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
44
45
46
47
48
49
{
"name": "polycss-monorepo",
"version": "0.0.0",
"private": true,
"packageManager": "pnpm@10.32.1",
"engines": {
"node": ">=22.12.0"
},
"description": "CSS-based polygon mesh rendering engine monorepo.",
"type": "module",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/LayoutitStudio/polycss.git"
},
"bugs": {
"url": "https://github.com/LayoutitStudio/polycss/issues"
},
"homepage": "https://github.com/LayoutitStudio/polycss#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/polycss-website dev",
"build:website": "pnpm --filter @layoutit/polycss-website build",
"bench:build": "node bench/build.mjs",
"bench:serve": "node bench/perf-serve.mjs --port 4400",
"bench:perf": "node bench/build.mjs && node bench/perf-bench.mjs",
"bench:lossy": "pnpm --filter @layoutit/polycss-core build && node bench/lossy-optimizer-bench.mjs",
"bench:visual": "node bench/build.mjs && node bench/perf-visual.mjs"
},
"pnpm": {
"onlyBuiltDependencies": [
"esbuild",
"sharp"
]
},
"devDependencies": {
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"esbuild": "^0.28.0",
"playwright": "^1.58.2",
"react": "^19.2.6",
"react-dom": "^19.2.6",
"vue": "^3.5.30"
}
}