-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 1.5 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
56
57
58
59
60
{
"name": "@mj-studio/next-server-util",
"version": "0.0.4",
"description": "A React app for using Next server utility",
"repository": {
"type": "git",
"url": "git+https://github.com/mj-studio-library/next-server-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.0.19"
},
"devDependencies": {
"@mj-studio/eslint-config-react": "^0.1.12",
"@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",
"next": ">=14",
"prettier": "^3.2.5",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"rollup-plugin-peer-deps-external": "^2.2.4",
"rollup-plugin-postcss": "^4.0.2",
"rollup-plugin-typescript2": "^0.36.0",
"typescript": "^5.3.3",
"yup": "*"
},
"exports": {
".": {
"import": {
"types": "./dist/index.d.ts",
"default": "./esm/index.js"
},
"require": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
}
}
},
"types": "./dist/index.d.ts",
"main": "./dist/index.js",
"files": [
"dist",
"esm"
],
"peerDependencies": {
"next": ">=14",
"react": ">=18.0.0",
"react-dom": ">=18.0.0",
"yup": "*"
},
"author": "MJ Studio",
"license": "MIT"
}