-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
30 lines (30 loc) · 1014 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
{
"name": "pebble-icons",
"version": "1.0.2",
"description": "Pebble icon set ",
"main": "dist/index.js",
"types": "types/index.d.ts",
"scripts": {
"test": "echo \"Error: no test specified\"",
"build-react-svg": "svgr --svgo-config ./svgo_config.js --replace-attr-values '#fff={props.color}' --out-dir ./react svg --typescript",
"rollup": "rollup ./dist/index --format es --preserveModules -e react",
"clean": "rm -rf react && rm -rf types && rm -rf dist",
"build": "npm run clean && npm run build-react-svg && tsc -p . && npm run rollup"
},
"author": "Max Steenbergen",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/maxsteenbergen/pebble-icons"
},
"devDependencies": {
"@svgr/babel-plugin-remove-jsx-attribute": "^6.0.0",
"@svgr/cli": "^6.2.0",
"@types/react": "^17.0.38",
"@types/react-dom": "^17.0.11",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"rollup": "^2.66.0",
"typescript": "^4.5.5"
}
}