-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
41 lines (41 loc) · 1.24 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
{
"name": "@notainc/kamon",
"version": "2.0.1",
"description": "This is icon system for Helpfeel Inc.",
"repository": {
"type": "git",
"url": "git+https://github.com/nota/kamon.git"
},
"type": "module",
"exports": {
"./svg/*.svg": "./svg/*.svg",
"./react": "./dist/react/index.js",
"./react/*": "./dist/react/*.js"
},
"main": "./dist/react/index.js",
"sideEffects": false,
"license": "MIT",
"watch": {
"build:example": "{example, svg}/*"
},
"scripts": {
"build": "node generate-react-component.mjs && npm exec tsc",
"build:example": "npm-run-all build:example:*",
"build:example:sprite": "svg-sprite -C example/config/config.json --shape-transform-svgo example/config/svgo.json svg/*.svg",
"build:example:html": "node example/js/icon-html.js",
"start:example": "npm-run-all start:example:*",
"start:example:server": "http-server ./example -o",
"start:example:watch": "npm-watch",
"test": "echo \"Error: no test specified\" && exit 1"
},
"devDependencies": {
"@types/react": "^18.3.5",
"http-server": "^0.11.1",
"npm-run-all": "^4.1.5",
"npm-watch": "^0.5.0",
"pascalcase": "^2.0.0",
"svgo": "^3.3.2",
"svg-sprite": "^1.5.0",
"typescript": "^5.6.2"
}
}