-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
58 lines (58 loc) · 1.37 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": "ambient",
"version": "1.0.0",
"type": "module",
"description": "Color Checker Tool",
"author": "Kevin Taeyoon Jin <[email protected]>",
"license": "BSD-3-Clause",
"homepage": "https://ambient.kevintyj.com",
"repository": "github:kevintyj/ambient",
"bugs": {
"url": "https://github.com/kevintyj/ambient/issues"
},
"keywords": [
"ui",
"ambient",
"accessibility"
],
"scripts": {
"prepare": "husky install",
"start": "vite",
"dev": "vite --debug",
"build": "vite build",
"serve": "vite preview",
"lint:es": "eslint .",
"ci": "pnpm run lint:es && pnpm run build"
},
"devDependencies": {
"@antfu/eslint-config": "^2.1.2",
"@commitlint/cli": "^18.4.3",
"@commitlint/config-conventional": "^18.4.3",
"@tailwindcss/typography": "^0.5.10",
"autoprefixer": "^10.4.16",
"eslint": "^8.54.0",
"husky": "^8.0.3",
"lint-staged": "^15.1.0",
"postcss": "^8.4.31",
"sass": "^1.69.5",
"tailwindcss": "^3.3.5",
"typescript": "^5.3.2",
"vite": "^5.0.4",
"vite-plugin-solid": "^2.7.2",
"vite-plugin-solid-styled": "^0.10.0"
},
"dependencies": {
"@felte/solid": "^1.2.11",
"@solidjs/router": "^0.9.1",
"@types/chroma-js": "^2.4.3",
"bootstrap-icons": "^1.11.2",
"chroma-js": "^2.4.2",
"lodash": "^4.17.21",
"solid-js": "^1.8.6",
"solid-styled": "^0.10.0",
"solid-toast": "^0.5.0"
},
"lint-staged": {
"*": "eslint --fix"
}
}