utquidem
Version:
The meta-framework suite designed from scratch for frontend-focused modern web development.
82 lines (81 loc) • 2.32 kB
JSON
{
"name": "@modern-js/monorepo-tools",
"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.4.4",
"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",
"exports": {
".": {
"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/index.ts",
"default": "./dist/js/node/index.js"
}
},
"bin": {
"modern": "./bin/modern.js"
},
"scripts": {
"prepare": "pnpm build",
"prepublishOnly": "only-allow-pnpm && pnpm build -- --platform",
"new": "modern new",
"build": "modern build",
"test": "jest --passWithNoTests"
},
"dependencies": {
"@modern-js/core": "workspace:^1.9.0",
"@babel/runtime": "^7",
"@modern-js/i18n-cli-language-detector": "workspace:^1.2.2",
"@modern-js/new-action": "workspace:^1.3.7",
"@modern-js/plugin": "workspace:^1.3.3",
"@modern-js/plugin-changeset": "workspace:^1.2.5",
"@modern-js/plugin-i18n": "workspace:^1.2.4",
"@modern-js/utils": "workspace:^1.6.0",
"@rushstack/node-core-library": "^3.39.1",
"@rushstack/package-deps-hash": "^3.0.54",
"anymatch": "^3.1.2",
"md5": "^2.3.0",
"p-map": "^4.0.0"
},
"devDependencies": {
"@scripts/build": "workspace:*",
"@scripts/jest-config": "workspace:*",
"@types/jest": "^26",
"@types/md5": "^2.3.1",
"@types/node": "^14",
"@types/react": "^17",
"@types/react-dom": "^17",
"jest": "^27",
"typescript": "^4"
},
"sideEffects": false,
"modernConfig": {
"output": {
"packageMode": "node-js"
}
},
"publishConfig": {
"registry": "https://registry.npmjs.org/",
"access": "public",
"types": "./dist/types/index.d.ts"
}
}