This repository has been archived by the owner on Jun 7, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
56 lines (56 loc) · 1.54 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
50
51
52
53
54
55
56
{
"name": "heroicons-react",
"version": "1.4.1",
"description": "React components for heroicons",
"types": "build/index.d.ts",
"main": "build/index.js",
"module": "build/index.es.js",
"typings": "build/index.d.ts",
"files": [
"build"
],
"sideEffects": false,
"scripts": {
"fetch": "rm -rf heroicons/ && git clone https://github.com/tailwindlabs/heroicons",
"gen": "npm run fetch && ts-node --project bin/tsconfig.json --files bin/build.ts",
"cleanup": "./cleanup.sh",
"build": "npm run gen && rollup -c rollup.config.ts && npm run cleanup",
"watch": "rollup -c rollup.config.ts --watch"
},
"keywords": [
"react",
"heroicons",
"heroiconsui"
],
"repository": {
"type": "git",
"url": "git+https://github.com/impulse/heroicons-react"
},
"bugs": {
"url": "https://github.com/impulse/heroicons-react/issues"
},
"author": "impulse",
"license": "MIT",
"devDependencies": {
"@rollup/plugin-commonjs": "^12.0.0",
"@rollup/plugin-node-resolve": "^8.0.0",
"@svgr/core": "^5.4.0",
"@svgr/plugin-jsx": "^5.4.0",
"@svgr/plugin-prettier": "^5.4.0",
"@svgr/plugin-svgo": "^5.4.0",
"@types/node": "^14.0.4",
"@types/react": "^16.9.35",
"junk": "^3.1.0",
"react": "^16.13.1",
"rollup": "^2.10.5",
"rollup-plugin-peer-deps-external": "^2.2.2",
"rollup-plugin-terser": "^5.3.0",
"rollup-plugin-typescript2": "^0.27.1",
"ts-node": "^8.10.1",
"typescript": "^3.9.3"
},
"peerDependencies": {
"react": ">=16.13"
},
"dependencies": {}
}