-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
47 lines (47 loc) · 1.36 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
{
"name": "suomifi-icons",
"version": "7.3.0",
"main": "./cjs/src/index.js",
"module": "./esm/src/index.js",
"typings": "./types/src/index.d.ts",
"sideEffects": false,
"repository": {
"type": "git",
"url": "git+https://github.com/vrk-kpa/suomifi-icons.git"
},
"author": "Joonas Kaski <[email protected]>",
"contributors": [
"Sami Korpela"
],
"license": "MIT",
"devDependencies": {
"@rollup/plugin-commonjs": "^22.0.2",
"@rollup/plugin-node-resolve": "^14.0.0",
"@svgr/cli": "^6.5.1",
"@types/react": "^17.0.0",
"@types/styled-components": "^5.1.26",
"fs-extra": "^11.1.0",
"react": "^17.0.0",
"react-dom": "^17.0.0",
"rimraf": "^5.0.0",
"rollup": "^2.79.0",
"rollup-plugin-peer-deps-external": "^2.2.4",
"rollup-plugin-typescript2": "^0.33.0",
"styled-components": "^5.3.6",
"typescript": "^4.8.2"
},
"scripts": {
"clean": "rimraf dist",
"svgr": "rimraf svgrComponents && node runSVGR.js",
"generate": "rimraf src/index.ts src/baseIcons src/componentIcons src/doctypeIcons src/illustrativeIcons src/logoIcons && node createComponents",
"build": "npm run clean && rollup -c && node frank.js",
"frank": "node frank.js"
},
"peerDependencies": {
"react": ">=16.2.0",
"styled-components": ">=5.2.1"
},
"dependencies": {
"classnames": "^2.3.1"
}
}