UNPKG

next-superjson-plugin

Version:

Automatically transform your Next.js Pages to use SuperJSON with SWC

59 lines (58 loc) 1.42 kB
{ "name": "next-superjson-plugin", "version": "0.6.3", "description": "Automatically transform your Next.js Pages to use SuperJSON with SWC", "author": "JH.Lee <contact@jins.dev>", "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": "contact@jins.dev" }, "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" ] } }