-
Notifications
You must be signed in to change notification settings - Fork 65
/
Copy pathpackage.json
66 lines (66 loc) · 1.83 KB
/
package.json
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
{
"name": "oklch-picker",
"private": true,
"homepage": "https://oklch.com/",
"type": "module",
"license": "MIT",
"engines": {
"node": ">=20"
},
"scripts": {
"start": "vite",
"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.6",
"@nanostores/persistent": "^0.10.2",
"autoprefixer": "^10.4.20",
"culori": "^4.0.1",
"delaunator": "^5.0.1",
"jstransformer-markdown-it": "^3.0.0",
"nanodelay": "^2.0.2",
"nanostores": "^0.11.3",
"plausible-tracker": "^0.3.9",
"postcss": "^8.4.49",
"postcss-media-minmax": "^5.0.0",
"postcss-mixins": "^11.0.3",
"postcss-nesting": "^13.0.1",
"postcss-opacity-percentage": "^3.0.0",
"three": "~0.171.0",
"vite": "^6.0.3",
"vite-plugin-pug-transformer": "^1.0.5"
},
"devDependencies": {
"@logux/eslint-config": "^53.5.1",
"@logux/stylelint-config": "^0.20.0",
"@size-limit/file": "^11.1.6",
"@types/culori": "^2.1.1",
"@types/delaunator": "^5.0.3",
"@types/node": "^22.10.1",
"@types/three": "^0.170.0",
"better-node-test": "^0.7.1",
"eslint": "^9.16.0",
"happy-dom": "^15.11.7",
"nano-staged": "^0.8.0",
"simple-git-hooks": "^2.11.1",
"size-limit": "^11.1.6",
"stylelint": "^16.11.0",
"svgo": "^3.3.2",
"typescript": "^5.7.2"
},
"pnpm": {
"overrides": {
"markdown-it@<12.3.2": ">=12.3.2",
"protobufjs@<6.11.3": ">=6.11.3",
"got@<11.8.5": ">=11.8.5"
}
}
}