-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
84 lines (84 loc) · 2.27 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
{
"name": "@freshcells/next-static-components",
"type": "module",
"author": "David Heidrich <[email protected]>",
"peerDependencies": {
"@loadable/babel-plugin": "^5.16.1",
"@loadable/component": "^5.16.4",
"@loadable/server": "^5.16.5",
"@loadable/webpack-plugin": "^5.15.2",
"next": ">= 13.5 < 16",
"react-dom": ">= 17 < 19",
"webpack": "^5",
"webpack-cli": "^5"
},
"publishConfig": {
"access": "public"
},
"module": "dist/module/index.js",
"types": "dist/module/index.d.ts",
"bin": "./dist/module/bin/next-static-components.js",
"files": [
"dist"
],
"exports": {
".": {
"import": "./dist/module/index.js",
"types": "./dist/module/index.d.ts"
},
"./babel": {
"require": "./dist/cjs/babel/index.js"
}
},
"scripts": {
"build": "tsc && tsc -p tsconfig.cjs.json && sh esm-postbuild.sh",
"prepack": "yarn build",
"prettify": "prettier \"**/*.{ts,tsx}\" --write",
"test": "jest",
"test-ci": "JEST_JUNIT_OUTPUT_NAME=\"test-results/js-test-results.xml\" jest --ci --reporters=default --reporters=jest-junit"
},
"dependencies": {
"semver": "^7.5.2",
"send": "^0.19.0"
},
"devDependencies": {
"@babel/core": "^7.20.12",
"@loadable/babel-plugin": "^5.16.1",
"@loadable/component": "^5.16.4",
"@loadable/server": "^5.16.5",
"@loadable/webpack-plugin": "^5.15.2",
"@types/cross-spawn": "^6.0.2",
"@types/jest": "^29.4.3",
"@types/loadable__component": "^5.13.9",
"@types/loadable__server": "^5.12.11",
"@types/loadable__webpack-plugin": "^5.7.6",
"@types/node": "^18.14.2",
"@types/react": "^18.0.28",
"@types/react-dom": "^18.0.11",
"@types/semver": "^7.3.13",
"@types/send": "^0.17.1",
"@types/webpack-node-externals": "^2.5.3",
"jest": "^29.7.0",
"jest-junit": "^16.0.0",
"next": "^15.0.4",
"prettier": "^2.8.4",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"sass-loader": "^13.2.0",
"semantic-release": "^20.1.0",
"ts-jest": "^29.2.5",
"typescript": "^4.9.4",
"webpack": "^5.97.1",
"webpack-cli": "^5.0.1"
},
"resolutions": {
"@types/react": "17.0.53"
},
"release": {
"branches": [
"main",
"next"
]
},
"packageManager": "[email protected]"
}