-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.23 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
{
"name": "@mj-studio/react-util",
"version": "0.0.32",
"description": "A React utility set by MJ Studio",
"repository": {
"type": "git",
"url": "git+https://github.com/mj-studio-library/react-util.git"
},
"scripts": {
"t": "eslint src && yarn tsc",
"build": "yarn t && rm -rf dist && rm -rf esm && rollup --config rollup.config.mjs",
"release": "yarn t && zx tool/publish.mjs"
},
"dependencies": {
"@mj-studio/js-util": "^1.1.19"
},
"devDependencies": {
"@mj-studio/eslint-config-react": "^0.0.20",
"@rollup/plugin-commonjs": "^25.0.7",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-terser": "^0.4.4",
"@types/react": "^18.2.20",
"eslint": "^8.56.0",
"prettier": "^3.2.5",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"rollup": "^4.21.2",
"rollup-plugin-peer-deps-external": "^2.2.4",
"rollup-plugin-postcss": "^4.0.2",
"rollup-plugin-typescript2": "^0.36.0",
"typescript": "^5.3.3"
},
"exports": {
".": "./dist/index.js"
},
"types": "./dist/index.d.ts",
"main": "./dist/index.js",
"files": [
"dist"
],
"peerDependencies": {
"react": ">=18.0.0",
"react-dom": ">=18.0.0"
},
"author": "MJ Studio",
"license": "MIT"
}