-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.13 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.13 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
{
"name": "@asmfx/react-controls",
"version": "0.0.15",
"description": "",
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"repository": {
"type": "git",
"url": "https://github.com/asmfx/react-controls.git"
},
"scripts": {
"publish:check": "npm publish --access=public --dry-run",
"publish:withpatch": "npm version patch && npm publish --access=public",
"publish:direct": "npm publish --access=public",
"build": "rm -rf dist && rollup -c"
},
"author": "Asim Gunes",
"license": "ISC",
"devDependencies": {
"@rollup/plugin-commonjs": "^24.1.0",
"@rollup/plugin-node-resolve": "^15.0.2",
"@rollup/plugin-terser": "^0.4.1",
"@rollup/plugin-typescript": "^11.1.0",
"@types/react": "^17.0.62",
"rollup": "^3.20.2",
"rollup-plugin-dts": "^5.3.0",
"rollup-plugin-peer-deps-external": "^2.2.4",
"typescript": "^4.9.5"
},
"peerDependencies": {
"react": "^17.0.2",
"react-dom": "^17.0.2"
},
"files": [
"LICENSE.md",
"README.md",
"dist/*",
"src/*"
],
"dependencies": {
"primereact": "^9.5.0",
"react-bootstrap": "^2.8.0"
}
}