-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 2 KB
/
Copy pathpackage.json
File metadata and controls
69 lines (69 loc) · 2 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
{
"name": "cssgraphics",
"version": "0.0.1",
"packageManager": "pnpm@10.33.0",
"type": "module",
"description": "Asset distribution and prepared-model runtime tooling for PolyCSS.",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/layoutit/cssGraphics.git"
},
"homepage": "https://css.graphics/",
"bugs": {
"url": "https://github.com/layoutit/cssGraphics/issues"
},
"bin": {
"cssgraphics": "./dist/cli/src/cli/cssgraphics.mjs"
},
"exports": {
".": {
"types": "./dist/runtime/index.d.ts",
"import": "./dist/runtime/cssgraphics.js"
},
"./style.css": "./dist/runtime/cssgraphics.css"
},
"files": [
"dist/runtime/",
"dist/cli/",
"LICENSE",
"README.md"
],
"engines": {
"node": ">=22.12.0"
},
"scripts": {
"dev": "vite --host 127.0.0.1",
"build": "pnpm build:site && pnpm build:lib",
"build:site": "vite build",
"build:lib": "vite build --mode library && node scripts/build-cli.mjs",
"prepack": "pnpm build:lib",
"preview": "vite preview --host 127.0.0.1",
"prepare:super-mario-64": "pnpm build:lib && node scripts/prepare/super-mario-64.mjs",
"prepare:catalog": "pnpm build:lib && node scripts/prepare/catalog.mjs",
"prepare:site-models": "node scripts/prepare/site-models.mjs",
"prepare:site-previews": "pnpm prepare:site-models && node scripts/prepare/site-previews.mjs",
"verify:source-only": "node scripts/verify-source-only.mjs --strict",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"@layoutit/polycss": "0.2.10",
"@layoutit/polycss-morph": "0.2.10",
"prismjs": "1.30.0"
},
"devDependencies": {
"@fontsource/bowlby-one-sc": "5.3.0",
"@types/node": "^24.10.0",
"@types/prismjs": "1.26.5",
"playwright": "1.60.0",
"sharp": "0.35.3",
"typescript": "5.9.3",
"vite": "7.3.1"
},
"cssgraphicsPrepareDependencies": {
"playwright": "1.60.0",
"sharp": "0.35.3",
"typescript": "5.9.3",
"vite": "7.3.1"
}
}