utquidem
Version:
The meta-framework suite designed from scratch for frontend-focused modern web development.
83 lines (82 loc) • 2.31 kB
JSON
{
"name": "@modern-js/plugin-egg",
"description": "The meta-framework suite designed from scratch for frontend-focused modern web development.",
"homepage": "https://modernjs.dev",
"bugs": "https://github.com/modern-js-dev/modern.js/issues",
"repository": "modern-js-dev/modern.js",
"license": "MIT",
"keywords": [
"react",
"framework",
"modern",
"modern.js"
],
"version": "1.5.5",
"jsnext:source": "./src/index.ts",
"types": "./src/index.ts",
"main": "./dist/js/node/index.js",
"module": "./dist/js/treeshaking/index.js",
"jsnext:modern": "./dist/js/modern/index.js",
"scripts": {
"prepare": "pnpm build",
"prepublishOnly": "only-allow-pnpm && pnpm build -- --platform",
"new": "modern new",
"build": "modern build",
"test": "jest --passWithNoTests"
},
"exports": {
"./types": "./types.d.ts",
".": {
"node": {
"jsnext:source": "./src/index.ts",
"import": "./dist/js/modern/index.js",
"require": "./dist/js/node/index.js"
},
"default": "./dist/js/treeshaking/index.js"
},
"./cli": {
"jsnext:source": "./src/cli/index.ts",
"default": "./dist/js/node/cli/index.js"
}
},
"dependencies": {
"@babel/runtime": "^7.15.3",
"@modern-js/adapter-helpers": "workspace:^1.2.3",
"@modern-js/bff-runtime": "workspace:^1.2.2",
"@modern-js/bff-utils": "workspace:^1.2.4",
"@modern-js/utils": "workspace:^1.6.0",
"egg-ts-helper": "^1.29.1",
"type-is": "^1.6.18"
},
"devDependencies": {
"@scripts/build": "workspace:*",
"@scripts/jest-config": "workspace:*",
"@types/formidable": "^1.2.3",
"@types/jest": "^27.0.1",
"@types/koa": "^2.13.4",
"@types/node": "^14",
"@types/supertest": "^2.0.11",
"@types/type-is": "^1.6.3",
"egg": "^2.29.4",
"egg-mock": "^3.26.0",
"jest": "^27",
"koa": "^2.13.1",
"supertest": "^6.1.6",
"@modern-js/server-core": "workspace:*",
"@modern-js/core": "workspace:*",
"typescript": "^4"
},
"modernConfig": {
"output": {
"packageMode": "node-js"
}
},
"peerDependencies": {
"egg": "^2.29.4"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/",
"access": "public",
"types": "./dist/types/index.d.ts"
}
}