-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.43 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.43 KB
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
{
"name": "codevora-ui",
"version": "1.0.9",
"type": "module",
"description": "High-performance theme based UI components",
"author": "Sujan Rai",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/Sujan-Rai-426/CodeVora-UI-Library.git"
},
"bugs": {
"url": "https://github.com/Sujan-Rai-426/CodeVora-UI-Library/issues"
},
"homepage": "https://github.com/Sujan-Rai-426/CodeVora-UI-Library#readme",
"main": "dist/index.js",
"module": "dist/index.esm.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"publishConfig": {
"access": "public"
},
"scripts": {
"build:js": "rollup -c",
"build:types": "rollup -c rollup.dts.config.js",
"build": "npm run build:js && npm run build:types",
"watch": "rollup -c -w",
"preversion": "npm run build",
"version": "git add -A",
"postversion": "git push origin main --tags"
},
"peerDependencies": {
"react": "^17.0.0 || ^18.0.0 || ^19.0.0",
"react-dom": "^17.0.0 || ^18.0.0 || ^19.0.0"
},
"devDependencies": {
"@babel/core": "^7.28.5",
"@babel/preset-env": "^7.28.5",
"@babel/preset-react": "^7.28.5",
"@rollup/plugin-babel": "^6.1.0",
"@rollup/plugin-commonjs": "^24.1.0",
"@rollup/plugin-node-resolve": "^15.3.1",
"postcss": "^8.5.6",
"rollup": "^3.29.5",
"rollup-plugin-dts": "^6.3.0",
"rollup-plugin-postcss": "^4.0.2",
"typescript": "^5.9.3"
}
}