-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
78 lines (78 loc) · 2.15 KB
/
package.json
File metadata and controls
78 lines (78 loc) · 2.15 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
72
73
74
75
76
77
78
{
"name": "react-compiler-webpack",
"version": "1.0.0",
"description": "The webpack/Next.js Plugin for React Compiler",
"repository": "https://github.com/SukkaW/react-compiler-webpack",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"files": [
"dist",
"next.js"
],
"scripts": {
"lint": "eslint --format=sukka .",
"build": "rollup -c rollup.config.ts --configPlugin swc3 --bundleConfigAsCjs",
"prepublishOnly": "npm run build",
"pretest": "npm run build",
"test": "mocha -r @swc-node/register 'test/index.ts'",
"test:update": "UPDATE_SNAPSHOT=all mocha -r @swc-node/register 'test/index.ts'",
"prerelease": "pnpm run build && pnpm run lint",
"release": "bumpp -r --all --commit \"release: %s\" --tag \"%s\""
},
"keywords": [
"react",
"react-forget",
"react-compiler",
"webpack-loader",
"webpack",
"nextjs",
"app-router"
],
"author": "",
"license": "MIT",
"dependencies": {
"@babel/core": "^7.29.0",
"@babel/plugin-syntax-jsx": "^7.28.6",
"@babel/plugin-syntax-typescript": "^7.28.6"
},
"devDependencies": {
"@eslint-sukka/node": "^8.7.0",
"@rspack/core": "^1.7.6",
"@swc-node/register": "^1.11.1",
"@swc/core": "^1.15.17",
"@types/babel__core": "^7.20.5",
"@types/mocha": "^10.0.10",
"@types/node": "^24.11.0",
"babel-plugin-react-compiler": "^19.1.0-rc.3",
"browserslist": "^4.28.1",
"bumpp": "^10.4.1",
"earl": "^2.0.0",
"eslint": "^9.39.3",
"eslint-config-sukka": "^8.7.0",
"eslint-formatter-sukka": "^8.7.0",
"expect": "^30.2.0",
"foxts": "^5.3.0",
"memfs": "^5.0.0-next.1",
"mocha": "^11.7.5",
"rollup": "^4.59.0",
"rollup-plugin-dts": "^6.3.0",
"rollup-plugin-swc3": "^0.12.1",
"swc-loader": "^0.2.7",
"typescript": "^5.9.3",
"webpack": "^5.105.3"
},
"peerDependencies": {
"babel-plugin-react-compiler": "*"
},
"packageManager": "pnpm@10.30.3",
"pnpm": {
"neverBuiltDependencies": [],
"overrides": {
"eslint>chalk": "npm:picocolors@^1.1.1"
}
},
"overrides": {
"hasown": "npm:@nolyfill/hasown@latest"
}
}