-
Notifications
You must be signed in to change notification settings - Fork 47
/
package.json
35 lines (35 loc) · 956 Bytes
/
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
{
"name": "REPLACE_ME",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "npm run transform-icons && vite",
"build": "npm run build:lib && vite build",
"build:lib": "npm run transform-icons && npm run copy-library-assets",
"preview": "npm run build && vite preview",
"transform-icons": "svg-to-ts-files",
"copy-library-assets": "cpx package.json dist/icons && cpx README.md dist/icons"
},
"devDependencies": {
"cpx": "^1.5.0",
"svg-to-ts": "^10.0.0",
"vite": "^4.1.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/kreuzerk/svg-icon-library-starter.git"
},
"keywords": [
"SVG",
"icons",
"library",
"starter"
],
"author": "Kevin Kreuzer",
"license": "ISC",
"bugs": {
"url": "https://github.com/kreuzerk/svg-icon-library-starter/issues"
},
"homepage": "https://github.com/kreuzerk/svg-icon-library-starter#readme"
}