-
Notifications
You must be signed in to change notification settings - Fork 109
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 1.88 KB
/
package.json
File metadata and controls
69 lines (69 loc) · 1.88 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": "oklch-picker",
"private": true,
"homepage": "https://oklch.com/",
"license": "MIT",
"type": "module",
"scripts": {
"start": "vite --host 0.0.0.0",
"build": "vite build -m production",
"clean": "rm -Rf ./dist/",
"build:lch": "LCH=1 vite build -m production && ./lch.sh",
"test:js": "oxlint",
"test:css": "stylelint .",
"test:build": "node --run build && size-limit && node --run build:lch",
"test:unit": "bnt",
"test": "FORCE_COLOR=1 pnpm run /^test:/"
},
"dependencies": {
"@colordx/core": "^5.2.0",
"@csstools/postcss-oklab-function": "^5.0.3",
"@nanostores/persistent": "^1.3.3",
"autoprefixer": "^10.5.0",
"culori": "^4.0.2",
"delaunator": "^5.1.0",
"jstransformer-markdown-it": "^3.0.0",
"lightningcss": "^1.32.0",
"nanodelay": "^2.0.2",
"nanostores": "^1.3.0",
"plausible-client": "^2.0.0",
"postcss": "^8.5.10",
"postcss-media-minmax": "^5.0.0",
"postcss-mixins": "^12.1.2",
"postcss-nesting": "^14.0.0",
"postcss-opacity-percentage": "^3.0.0",
"three": "~0.184.0",
"vite": "^8.0.8",
"vite-plugin-pug-transformer": "^1.0.8"
},
"devDependencies": {
"@logux/oxc-configs": "^0.4.0",
"@logux/stylelint-config": "^0.22.0",
"@size-limit/file": "^12.1.0",
"@types/culori": "^4.0.1",
"@types/delaunator": "^5.0.3",
"@types/node": "^25.6.0",
"@types/three": "^0.184.0",
"actions-up": "^1.14.1",
"better-node-test": "^0.8.4",
"happy-dom": "^20.9.0",
"multiocular": "^0.8.2",
"nano-staged": "^1.0.2",
"oxlint": "^1.60.0",
"oxlint-tsgolint": "^0.21.1",
"simple-git-hooks": "^2.13.1",
"size-limit": "^12.1.0",
"stylelint": "^17.8.0",
"svgo": "^4.0.1",
"typescript": "^6.0.3"
},
"engines": {
"node": ">=20"
},
"pnpm": {
"onlyBuiltDependencies": [
"esbuild",
"simple-git-hooks"
]
}
}