-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.json
58 lines (58 loc) · 1.39 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
{
"name": "next-superjson-plugin",
"version": "0.6.3",
"description": "Automatically transform your Next.js Pages to use SuperJSON with SWC",
"author": "JH.Lee <[email protected]>",
"homepage": "https://github.com/blitz-js/next-superjson-plugin#readme",
"repository": {
"type": "git",
"url": "https://github.com/blitz-js/next-superjson-plugin.git"
},
"bugs": {
"url": "https://github.com/blitz-js/next-superjson-plugin/issues",
"email": "[email protected]"
},
"license": "MIT",
"keywords": [
"swc-plugin"
],
"type": "module",
"main": "./dist/next_superjson.wasm",
"exports": {
".": "./dist/next_superjson.wasm",
"./tools": "./dist/tools.js",
"./client": "./dist/client.js"
},
"preferUnplugged": true,
"scripts": {
"prepack": "tsc && cp target/wasm32-wasi/release/next_superjson.wasm ./dist",
"prepare": "husky install"
},
"files": [
"dist"
],
"peerDependencies": {
"next": "^13.0 || ^14.0",
"superjson": "^1 || ^2"
},
"dependencies": {
"hoist-non-react-statics": "^3.3.2"
},
"devDependencies": {
"@types/hoist-non-react-statics": "^3.3.1",
"husky": "^8.0.2",
"lint-staged": "^13.0.3",
"next": "^13",
"prettier": "^2.7.1",
"superjson": "^2",
"typescript": "^5.3.3"
},
"lint-staged": {
"*.rs": [
"rustfmt --"
],
"*.{ts,json}": [
"prettier --write"
]
}
}