-
Notifications
You must be signed in to change notification settings - Fork 106
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 1.84 KB
/
package.json
File metadata and controls
67 lines (67 loc) · 1.84 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
{
"name": "oklch-picker",
"private": true,
"homepage": "https://oklch.com/",
"type": "module",
"license": "MIT",
"engines": {
"node": ">=20"
},
"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:types": "tsc --noEmit",
"test:js": "eslint .",
"test:css": "stylelint **/*.css",
"test:build": "node --run build && size-limit && node --run build:lch",
"test:unit": "bnt",
"test": "FORCE_COLOR=1 pnpm run /^test:/"
},
"dependencies": {
"@csstools/postcss-oklab-function": "^4.0.12",
"@nanostores/persistent": "^1.2.0",
"autoprefixer": "^10.4.21",
"culori": "^4.0.2",
"delaunator": "^5.0.1",
"jstransformer-markdown-it": "^3.0.0",
"nanodelay": "^2.0.2",
"nanostores": "^1.0.1",
"plausible-client": "^1.2.0",
"postcss": "^8.5.6",
"postcss-media-minmax": "^5.0.0",
"postcss-mixins": "^12.1.2",
"postcss-nesting": "^13.0.2",
"postcss-opacity-percentage": "^3.0.0",
"three": "~0.180.0",
"vite": "^7.1.12",
"vite-plugin-pug-transformer": "^1.0.8"
},
"devDependencies": {
"@logux/eslint-config": "^57.0.0",
"@logux/stylelint-config": "^0.21.0",
"@size-limit/file": "^11.2.0",
"@types/culori": "^4.0.1",
"@types/delaunator": "^5.0.3",
"@types/node": "^24.9.1",
"@types/three": "^0.180.0",
"actions-up": "^1.4.2",
"better-node-test": "^0.8.3",
"eslint": "^9.38.0",
"happy-dom": "^20.0.8",
"multiocular": "^0.8.1",
"nano-staged": "^0.8.0",
"simple-git-hooks": "^2.13.1",
"size-limit": "^11.2.0",
"stylelint": "^16.25.0",
"svgo": "^4.0.0",
"typescript": "^5.9.3"
},
"pnpm": {
"onlyBuiltDependencies": [
"esbuild",
"simple-git-hooks"
]
}
}