-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.07 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
{
"name": "svgmagic",
"version": "1.1.8",
"description": "SVGMagic, dynamic SVG loader with theme support for utility classes called in just one little line.",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "tsc && npm run copy-assets",
"copy-assets": "cp -R src/svg dist/svg",
"release": "npm version patch && git push --follow-tags && npm publish"
},
"keywords": [
"svg",
"svgm",
"tailwindsvg",
"nextsvg",
"svgmagic"
],
"author": "brohvis",
"license": "MIT",
"devDependencies": {
"@types/node": "^20.12.11",
"@types/react": "^18",
"@types/react-dom": "^18",
"react": "^18",
"react-dom": "^18",
"typescript": "^5.4.5"
},
"peerDependencies": {
"@svgr/webpack": "^6.3.0",
"react": "^18",
"react-dom": "^18"
},
"bin": {
"svgm-setup": "./bin/setup.js"
},
"dependencies": {
"fs-extra": "^11.2.0",
"inquirer": "^9.2.21"
},
"homepage": "https://svgmagic.dev",
"repository": {
"type": "git",
"url": "https://github.com/brohvis/svgmagic.git"
}
}