-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.27 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
{
"name": "@nuitral/react-ui-suite",
"version": "0.0.1-alpha.5",
"publishConfig": {
"access": "public"
},
"main": "dist/react-ui-suite.cjs.js",
"module": "dist/react-ui-suite.esm.js",
"types": "dist/index.d.ts",
"files": [
"dist/*"
],
"scripts": {
"build": "rm -rf dist && rollup -c",
"dev": "vite",
"format": "prettier --write ."
},
"keywords": [
"nuitral",
"UI",
"React",
"Suite"
],
"description": "nuitral React UI Suite",
"author": "Nicola Centonze",
"license": "MIT",
"repository": {
"type": "git",
"url": "[email protected]:nuitral/react-ui-suite.git"
},
"homepage": "https://nuitral.github.io",
"dependencies": {
"@nuitral/icons": "^0.0.1-alpha.2",
"@nuitral/theming": "^0.0.1-alpha.8",
"@nuitral/types": "^0.0.1-alpha.7",
"react": "^17.0.0 || ^18.0.0",
"react-dom": "^17.0.0 || ^18.0.0"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^26.0.1",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-terser": "^0.4.4",
"@rollup/plugin-typescript": "^11.1.6",
"@types/node": "^22.4.1",
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"@vitejs/plugin-react-swc": "^3.7.0",
"prettier": "^3.3.3",
"rollup": "^4.21.0",
"sass": "^1.79.4",
"tslib": "^2.6.3",
"typescript": "^5.6.2",
"vite": "^5.4.2"
}
}