forked from iconify/iconify
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
34 lines (34 loc) · 847 Bytes
/
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
{
"name": "@iconify-icon/solid",
"type": "module",
"description": "SolidJS wrapper for Iconify Icon web component",
"author": "Vjacheslav Trushkin",
"version": "1.0.3",
"license": "MIT",
"bugs": "https://github.com/iconify/iconify/issues",
"homepage": "https://iconify.design/",
"funding": "https://github.com/sponsors/cyberalien",
"repository": {
"type": "git",
"url": "https://github.com/iconify/iconify.git",
"directory": "iconify-icon/solid"
},
"scripts": {
"clean": "rimraf lib dist tsconfig.tsbuildinfo",
"prebuild": "pnpm run clean",
"build": "tsc -b"
},
"main": "dist/iconify.jsx",
"types": "dist/iconify.d.ts",
"dependencies": {
"iconify-icon": "workspace:^"
},
"devDependencies": {
"rimraf": "^3.0.2",
"solid-js": "^1.6.6",
"typescript": "^4.9.4"
},
"peerDependencies": {
"solid-js": ">=1"
}
}