-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.05 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
{
"name": "heroicons-js",
"version": "0.0.1",
"description": "Alternative heroicons javascript",
"private": false,
"main": "dist/heroicons.cjs.js",
"browser": "dist/heroicons.umd.js",
"module": "dist/heroicons.umd.js",
"unpkg": "dist/heroicons.min.js",
"files": [
"dist/*"
],
"scripts": {
"build": "node icons.js && rollup --config"
},
"keywords": [
"heroicons",
"heroicons-js",
"tailwindcss",
"icon-tailwindcss"
],
"author": {
"email": "[email protected]",
"name": "kenhyuwa"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/kenhyuwa/heroicons-js.git"
},
"bugs": {
"url": "https://github.com/kenhyuwa/heroicons-js/issues",
"email": "[email protected]"
},
"devDependencies": {
"@rollup/plugin-babel": "^5.3.0",
"fs-extra": "^10.0.0",
"heroicons": "github:tailwindlabs/heroicons#v0.4.1",
"pascal-case": "^3.1.2",
"prettier": "^2.3.1",
"rollup": "^2.52.2",
"rollup-plugin-commonjs": "^10.1.0"
}
}