-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
65 lines (65 loc) · 1.75 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
{
"name": "icon-workshop",
"version": "0.0.1",
"description": "Produce app icons for any platform",
"main": "NONE",
"type": "module",
"scripts": {
"dev": "vite",
"build": "vite build",
"lint": "eslint src",
"build:docker": "vite build && docker build -t ghcr.io/ryan-willis/icon-workshop:latest .",
"publish:docker": "docker push ghcr.io/ryan-willis/icon-workshop:latest",
"preview": "vite preview",
"test": "vitest",
"type-check": "tsc --noEmit"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ryan-willis/icon-workshop.git"
},
"keywords": [
"app",
"icon",
"generator",
"maker"
],
"author": "Ryan Willis <code@ryanwillis.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/ryan-willis/icon-workshop/issues"
},
"homepage": "https://github.com/ryan-willis/icon-workshop#readme",
"dependencies": {
"base64-js": "^1.5.1",
"classnames": "^2.5.1",
"fflate": "^0.8.2",
"figma-squircle": "^0.3.1",
"jszip": "^3.10.1",
"react": "^18.2.0",
"react-color": "^2.19.3",
"react-dom": "^18.2.0",
"sass": "^1.74.1",
"seedrandom": "^3.0.5",
"tinycolor2": "^1.6.0",
"webfontloader": "^1.6.28"
},
"devDependencies": {
"@eslint/js": "^9.1.1",
"@fiahfy/packbits": "^0.0.6",
"@types/node": "^20.12.7",
"@types/react": "^18.2.75",
"@types/react-color": "^3.0.12",
"@types/react-dom": "^18.2.24",
"@types/seedrandom": "^3.0.8",
"@types/tinycolor2": "^1.4.6",
"@types/webfontloader": "^1.6.38",
"@vitejs/plugin-react-swc": "^3.6.0",
"eslint": "^8.57.0",
"eslint-plugin-react": "^7.34.1",
"globals": "^15.1.0",
"typescript-eslint": "^7.7.1",
"vite": "^5.2.8",
"vitest": "^1.6.0"
}
}