-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 2 KB
/
package.json
File metadata and controls
71 lines (71 loc) · 2 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
{
"name": "@cardoai/utils",
"version": "1.0.63",
"description": "Utilities library",
"bugs": {
"url": "https://github.com/CardoAI/cardo-react-utils/issues"
},
"homepage": "https://github.com/CardoAI/cardo-react-utils#readme",
"keywords": [
"cardoai",
"utils"
],
"repository": {
"type": "git",
"url": "https://github.com/CardoAI/cardo-react-utils"
},
"license": "MIT",
"author": "CardoAI",
"main": "dist/index.cjs.js",
"module": "dist/index.esm.js",
"sideEffects": false,
"types": "dist/types/index.d.ts",
"files": [
"dist",
"src"
],
"devDependencies": {
"@babel/core": "latest",
"@babel/plugin-transform-runtime": "latest",
"@babel/preset-env": "latest",
"@babel/preset-react": "latest",
"@babel/preset-typescript": "latest",
"@babel/runtime": "latest",
"@rollup/plugin-commonjs": "latest",
"@rollup/plugin-json": "latest",
"@rollup/plugin-node-resolve": "latest",
"@rollup/plugin-typescript": "latest",
"@types/react": "latest",
"axios": "latest",
"query-string": "latest",
"react": "latest",
"react-router-dom": "latest",
"rollup": "latest",
"rollup-plugin-babel": "latest",
"rollup-plugin-commonjs": "latest",
"rollup-plugin-delete": "latest",
"rollup-plugin-node-externals": "latest",
"rollup-plugin-node-resolve": "latest",
"rollup-plugin-polyfill-node": "latest",
"rollup-plugin-terser": "latest",
"tslib": "latest",
"typescript": "latest"
},
"peerDependencies": {
"axios": "latest",
"query-string": "latest",
"react": "latest",
"react-router-dom": "latest"
},
"scripts": {
"build": "npm run build:js && npm run build:types",
"build:js": "rollup -c",
"build:types": "tsc -d --emitDeclarationOnly --declarationDir dist/types",
"prerelease": "npm run build",
"release": "npx standard-version",
"start": "rollup -c -w",
"types:check": "tsc --noEmit",
"types:watch": "npm run types:check -- --watch"
},
"dependencies": {}
}