forked from evilmartians/oklch-picker
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
58 lines (58 loc) · 1.69 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
{
"name": "@pleisto/oklch-picker",
"private": true,
"type": "module",
"license": "MIT",
"engines": {
"node": ">=16"
},
"scripts": {
"start": "vite",
"build": "vite build -m production",
"lint": "tsc --noEmit && eslint . && stylelint **/*.css",
"test": "pnpm audit --prod && pnpm lint && pnpm build && size-limit && LCH=1 pnpm build"
},
"dependencies": {
"@csstools/postcss-oklab-function": "^1.1.1",
"@nanostores/persistent": "^0.7.0",
"autoprefixer": "^10.4.12",
"culori": "github:bijela-gora/culori#2770175",
"jstransformer-markdown-it": "^3.0.0",
"lz-string": "^1.4.4",
"nanostores": "^0.7.0",
"postcss": "^8.4.17",
"postcss-media-minmax": "^5.0.0",
"postcss-mixins": "^9.0.4",
"postcss-nesting": "^10.2.0",
"postcss-opacity-percentage": "^1.1.2",
"vite": "^3.1.6",
"vite-plugin-pug-transformer": "^1.0.2"
},
"devDependencies": {
"@logux/eslint-config": "^47.2.0",
"@logux/stylelint-config": "^0.12.0",
"@size-limit/file": "^8.1.0",
"@types/lz-string": "^1.3.34",
"@typescript-eslint/eslint-plugin": "^5.38.1",
"@typescript-eslint/parser": "^5.38.1",
"eslint": "^8.24.0",
"eslint-config-standard": "^17.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-n": "^15.3.0",
"eslint-plugin-prefer-let": "^3.0.1",
"eslint-plugin-promise": "^6.0.1",
"nano-staged": "^0.8.0",
"simple-git-hooks": "^2.8.0",
"size-limit": "^8.1.0",
"stylelint": "^14.12.1",
"svgo": "^2.8.0",
"typescript": "^4.8.4"
},
"pnpm": {
"overrides": {
"markdown-it@<12.3.2": ">=12.3.2",
"protobufjs@<6.11.3": ">=6.11.3",
"got@<11.8.5": ">=11.8.5"
}
}
}