forked from evilmartians/oklch-picker
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 1.99 KB
/
Copy pathpackage.json
File metadata and controls
70 lines (70 loc) · 1.99 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
68
69
70
{
"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 && pnpm build:lch"
},
"dependencies": {
"@csstools/postcss-oklab-function": "^2.1.0",
"@nanostores/persistent": "^0.7.0",
"autoprefixer": "^10.4.14",
"culori": "^3.0.1",
"delaunator": "^5.0.0",
"firebase-tools": "^11.24.1",
"jstransformer-markdown-it": "^3.0.0",
"nanodelay": "^2.0.2",
"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",
"three": "^0.150.1",
"vite": "^4.2.1",
"vite-plugin-pug-transformer": "^1.0.3"
},
"devDependencies": {
"@logux/eslint-config": "^49.0.0",
"@logux/stylelint-config": "^0.14.0",
"@size-limit/file": "^8.2.4",
"@types/culori": "^2.0.0",
"@types/delaunator": "^5.0.0",
"@types/three": "^0.149.0",
"@typescript-eslint/eslint-plugin": "^5.56.0",
"@typescript-eslint/parser": "^5.56.0",
"eslint": "^8.36.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.3.0",
"svgo": "^3.0.2",
"typescript": "^5.0.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"
},
"auditConfig": {
"ignoreCves": [
"CVE-2022-23529"
]
}
}
}