-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
57 lines (57 loc) · 1.45 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
{
"name": "@zionix/ui",
"version": "0.3.26",
"description": "A collection of ready-to-use components ui/ux from react",
"repository": "https://github.com/pablogeokar/zionix-ui.git",
"author": "Pablo George <pablogeokar@hotmail.com>",
"license": "MIT",
"homepage": "https://zionix-ui.vercel.app/",
"main": "dist/cjs/index.ts",
"module": "dist/esm/index.ts",
"files": [
"dist"
],
"type": "module",
"types": "dist/index.d.ts",
"keywords": [
"react",
"typescript",
"ui",
"library ui",
"react-component",
"nextjs"
],
"scripts": {
"build": "rollup -c",
"watch": "rollup -c --watch",
"postversion": "rollup -c && git push && git push --tags && echo \"Successfully git released version!\""
},
"devDependencies": {
"@rollup/plugin-commonjs": "^24.0.0",
"@rollup/plugin-node-resolve": "^15.0.1",
"@rollup/plugin-typescript": "^10.0.1",
"@types/node": "^18.11.18",
"@types/react": "^18.0.26",
"node-sass": "^8.0.0",
"postcss": "^8.4.20",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"rollup": "^3.9.0",
"rollup-plugin-dts": "^5.1.0",
"rollup-plugin-peer-deps-external": "^2.2.4",
"rollup-plugin-postcss": "^4.0.2",
"sass": "^1.57.1",
"tslib": "^2.4.1",
"typescript": "^4.9.4"
},
"publishConfig": {
"access": "public"
},
"peerDependencies": {
"react": ">=16",
"react-dom": ">=16"
},
"dependencies": {
"phosphor-react": "^1.4.1"
}
}