forked from evilmartians/oklch-picker
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
64 lines (64 loc) · 1.82 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
{
"name": "oklch-picker",
"private": true,
"homepage": "https://oklch.com/",
"type": "module",
"license": "MIT",
"engines": {
"node": ">=16"
},
"scripts": {
"start": "vite",
"build": "vite build -m production",
"build:lch": "LCH=1 vite build -m production && ./lch.sh",
"lint": "tsc --noEmit && eslint . && stylelint **/*.css",
"test": "pnpm audit --prod --audit-level high && pnpm lint && pnpm build && size-limit && LCH=1 pnpm build"
},
"dependencies": {
"@csstools/postcss-oklab-function": "^2.1.0",
"@nanostores/persistent": "^0.7.0",
"autoprefixer": "^10.4.13",
"culori": "^2.0.4",
"firebase-tools": "^11.23.1",
"jstransformer-markdown-it": "^3.0.0",
"nanostores": "^0.7.4",
"postcss": "^8.4.21",
"postcss-media-minmax": "^5.0.0",
"postcss-mixins": "^9.0.4",
"postcss-nesting": "^11.2.1",
"postcss-opacity-percentage": "^2.0.0",
"vite": "^4.1.3",
"vite-plugin-pug-transformer": "^1.0.3"
},
"devDependencies": {
"@logux/eslint-config": "^48.0.0",
"@logux/stylelint-config": "^0.14.0",
"@size-limit/file": "^8.2.4",
"@typescript-eslint/eslint-plugin": "^5.52.0",
"@typescript-eslint/parser": "^5.52.0",
"eslint": "^8.34.0",
"eslint-config-standard": "^17.0.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-n": "^15.6.1",
"eslint-plugin-prefer-let": "^3.0.1",
"eslint-plugin-promise": "^6.1.1",
"nano-staged": "^0.8.0",
"simple-git-hooks": "^2.8.1",
"size-limit": "^8.2.4",
"stylelint": "^15.2.0",
"svgo": "^3.0.2",
"typescript": "^4.9.5"
},
"pnpm": {
"overrides": {
"markdown-it@<12.3.2": ">=12.3.2",
"protobufjs@<6.11.3": ">=6.11.3",
"got@<11.8.5": ">=11.8.5"
},
"auditConfig": {
"ignoreCves": [
"CVE-2022-23529"
]
}
}
}