-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
31 lines (31 loc) · 1.13 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
{
"name": "stashicons",
"version": "1.0.2",
"license": "MIT",
"repository": "https://github.com/buildstash/stashicons.git",
"files": [
"base/",
"README.md",
"LICENSE"
],
"scripts": {
"prepublishOnly": "bun run build",
"lint": "node ./scripts/verify-names.js",
"prebuild": "rimraf ./{base,brand} ./{react}/{base,brand} ./optimized/{base,brand}",
"build": "bun run build-base && bun run build-brand && bun run build-react",
"build-react": "node ./scripts/build.js react",
"build-base": "rimraf ./base ./optimized/base && svgo --config=svgo.base.mjs -f ./src/base -o ./optimized/base --pretty --indent=2",
"build-brand": "rimraf ./brand ./optimized/brand && svgo --config=svgo.brand.mjs -f ./src/brand -o ./optimized/brand --pretty --indent=2",
"release-channel": "node ./scripts/release-channel.js",
"release-notes": "node ./scripts/release-notes.js"
},
"devDependencies": {
"@babel/core": "^7.12.10",
"@babel/plugin-transform-react-jsx": "^7.12.12",
"@svgr/core": "^5.5.0",
"camelcase": "^6.0.0",
"prettier": "^2.8.7",
"rimraf": "^3.0.2",
"svgo": "^3.0.2"
}
}