-
Notifications
You must be signed in to change notification settings - Fork 21
/
package.json
38 lines (38 loc) · 1.42 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
{
"name": "@bitcoin-design/bitcoin-icons",
"version": "0.1.10",
"description": "About",
"main": "index.js",
"scripts": {
"prepublishOnly": "npm run build",
"build": "npm run build-outline && npm run build-filled && npm run build-react && npm run build-vue && npm run build-raw",
"build-react": "node ./scripts/build.js react",
"build-vue": "node ./scripts/build.js vue",
"build-raw": "node ./scripts/build.js raw",
"build-outline": "rimraf ./outline ./optimized/outline && svgo --config=svgo.outline.yaml -f ./svg/outline -o ./optimized/outline --pretty --indent=2 && cp -R ./optimized/outline ./outline",
"build-filled": "rimraf ./filled ./optimized/filled && svgo --config=svgo.filled.yaml -f ./svg/filled -o ./optimized/filled --pretty --indent=2 && cp -R ./optimized/filled ./filled"
},
"devDependencies": {
"@babel/core": "^7.12.10",
"@babel/plugin-transform-react-jsx": "^7.12.12",
"@svgr/core": "^5.5.0",
"@vue/compiler-dom": "^3.0.5",
"camelcase": "^6.0.0",
"rimraf": "^3.0.2",
"svgo": "^1.3.2"
},
"repository": {
"type": "git",
"url": "git+https://github.com/BitcoinDesign/Bitcoin-Icons.git"
},
"keywords": [
"bitcoin",
"icons"
],
"author": "Bitcoin Design Community",
"license": "MIT",
"bugs": {
"url": "https://github.com/BitcoinDesign/Bitcoin-Icons/issues"
},
"homepage": "https://github.com/BitcoinDesign/Bitcoin-Icons#readme"
}