forked from evilmartians/oklch-picker
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
71 lines (71 loc) · 2.07 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
67
68
69
70
71
{
"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": "pnpm build && size-limit && pnpm build:lch",
"test": "FORCE_COLOR=1 pnpm run /^test:/"
},
"dependencies": {
"@csstools/postcss-oklab-function": "^3.0.7",
"@nanostores/persistent": "^0.9.1",
"autoprefixer": "^10.4.16",
"culori": "^3.3.0",
"delaunator": "^5.0.0",
"jstransformer-markdown-it": "^3.0.0",
"nanodelay": "^2.0.2",
"nanostores": "^0.9.5",
"plausible-tracker": "^0.3.8",
"postcss": "^8.4.31",
"postcss-media-minmax": "^5.0.0",
"postcss-mixins": "^9.0.4",
"postcss-nesting": "^12.0.1",
"postcss-opacity-percentage": "^2.0.0",
"three": "~0.158.0",
"vite": "^5.0.2",
"vite-plugin-pug-transformer": "^1.0.5"
},
"devDependencies": {
"@logux/eslint-config": "^52.0.2",
"@logux/stylelint-config": "^0.16.0",
"@size-limit/file": "^11.0.0",
"@types/culori": "^2.0.4",
"@types/delaunator": "^5.0.2",
"@types/three": "^0.158.3",
"@typescript-eslint/eslint-plugin": "^6.12.0",
"@typescript-eslint/parser": "^6.12.0",
"eslint": "^8.54.0",
"eslint-config-standard": "^17.1.0",
"eslint-plugin-import": "^2.29.0",
"eslint-plugin-n": "^16.3.1",
"eslint-plugin-node-import": "^1.0.4",
"eslint-plugin-perfectionist": "^2.4.0",
"eslint-plugin-prefer-let": "^3.0.1",
"eslint-plugin-promise": "^6.1.1",
"nano-staged": "^0.8.0",
"simple-git-hooks": "^2.9.0",
"size-limit": "^11.0.0",
"stylelint": "^15.11.0",
"svgo": "^3.0.4",
"typescript": "^5.3.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"
}
}
}