UNPKG

utquidem

Version:

The meta-framework suite designed from scratch for frontend-focused modern web development.

106 lines (105 loc) 3.02 kB
{ "name": "@modern-js/plugin-garfish", "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.9", "jsnext:source": "./src/index.ts", "types": "./src/index.ts", "typesVersions": { "*": { ".": [ "./dist/types/runtime/index.d.ts" ], "cli": [ "./dist/types/cli/index.d.ts" ], "runtime": [ "./dist/types/runtime/index.d.ts" ], "types": [ "./type.d.ts" ] } }, "main": "./dist/js/node/index.js", "module": "./dist/js/treeshaking/runtime/index.js", "jsnext:modern": "./dist/js/modern/index.js", "exports": { "./types": "./type.d.ts", ".": { "node": { "jsnext:source": "./src/index.ts", "import": "./dist/js/modern/index.js", "require": "./dist/js/node/index.js" }, "default": "./dist/js/treeshaking/runtime/index.js" }, "./cli": { "jsnext:source": "./src/cli/index.ts", "default": "./dist/js/node/cli/index.js" } }, "scripts": { "prepare": "pnpm build", "prepublishOnly": "only-allow-pnpm && pnpm build --platform", "new": "modern new", "build": "modern build", "build:watch": "rm -rf ./dist && modern build --watch", "test": "jest --passWithNoTests" }, "dependencies": { "@babel/runtime": "^7", "@modern-js/utils": "workspace:^1.6.0", "@types/debug": "^4.1.7", "@types/react-loadable": "^5.5.6", "debug": "^4.3.2", "garfish": "^1.3.3", "hoist-non-react-statics": "^3.3.2", "react-loadable": "^5.5.0" }, "devDependencies": { "@modern-js/core": "workspace:*", "@modern-js/plugin-router": "workspace:*", "@modern-js/runtime-core": "workspace:*", "@modern-js/types": "workspace:*", "@scripts/build": "workspace:*", "@scripts/jest-config": "workspace:*", "@testing-library/jest-dom": "^5.16.1", "@testing-library/react": "^12.0.0", "@testing-library/react-hooks": "^7.0.1", "@testing-library/user-event": "^13.5.0", "@types/hoist-non-react-statics": "^3.3.1", "@types/jest": "^26.0.24", "@types/node": "^14", "@types/react": "^17", "@types/react-dom": "^17", "jest": "^27", "jest-fetch-mock": "^3.0.3", "react": "^17.0.2", "react-dom": "^17.0.2", "react-router-dom": "^6.2.1", "typescript": "^4", "webpack-chain": "^6.5.1" }, "peerDependencies": { "@modern-js/plugin-router": "workspace:^1.2.11", "@modern-js/runtime-core": "workspace:^1.4.3", "react": "^17" }, "sideEffects": false, "modernConfig": {}, "publishConfig": { "registry": "https://registry.npmjs.org/", "access": "public", "types": "./dist/types/runtime/index.d.ts" } }