-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.09 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
46
47
48
49
{
"name": "@aredotna/icons",
"version": "0.0.1",
"main": "dist/index.js",
"exports": {
"./*": "./dist/*.js"
},
"typesVersions": {
"*": {
"*": [
"./dist/*"
]
}
},
"license": "MIT",
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org"
},
"scripts": {
"build": "yarn clean && yarn optimize && node scripts/build.js && yarn compile",
"clean": "rm -rf .build/svg && rm -rf .build/src && rm -rf dist",
"compile": "tsc -p .",
"optimize": "svgo src -o .build/svg --config=svgo.config.js",
"prepublish": "yarn build"
},
"peerDependencies": {
"react": ">=16.2.0"
},
"devDependencies": {
"@svgr/core": "^6.3.1",
"@types/node": "^18.8.3",
"@types/react": "^18.0.21",
"fs-extra": "^10.1.0",
"glob": "^8.0.3",
"lodash": "^4.17.21",
"svg-parser": "^2.0.4",
"svgo": "^3.0.2",
"typescript": "^4.8.3"
},
"prettier": {
"arrowParens": "avoid",
"bracketSpacing": true,
"printWidth": 80,
"semi": false,
"singleQuote": false,
"trailingComma": "es5"
}
}