-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathpackage.json
59 lines (59 loc) · 1.37 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
57
58
59
{
"name": "@steeze-ui/solid-icon",
"version": "1.1.0",
"description": "Icon Component for Solid JS",
"sideEffects": false,
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"types": "types/types/index.d.ts",
"files": [
"dist"
],
"exports": {
".": {
"solid": "./dist/source/index.jsx",
"import": "./dist/esm/index.js",
"browser": {
"import": "./dist/esm/index.js",
"require": "./dist/cjs/index.js"
},
"require": "./dist/cjs/index.js",
"node": "./dist/cjs/index.js"
}
},
"scripts": {
"build": "rollup -c rollup.config.js",
"release:next": "pnpm run publish:npm -- --tag=next"
},
"license": "MIT",
"devDependencies": {
"rollup": "^3.3.0",
"rollup-preset-solid": "^1.4.0",
"typescript": "^4.8.4"
},
"dependencies": {
"solid-js": "^1.6.2"
},
"repository": {
"type": "git",
"url": "git+https://github.com/steeze-ui/icons.git",
"directory": "packages/components/solid-icon"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"keywords": [
"solid",
"solid-js",
"icon",
"icons",
"component",
"steeze"
],
"author": "Justin Voitel <[email protected]>",
"bugs": {
"url": "https://github.com/steeze-ui/icons/issues"
},
"homepage": "https://github.com/steeze-ui/icons#readme"
}