UNPKG

utquidem

Version:

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

99 lines (98 loc) 2.59 kB
{ "name": "@modern-js/create-request", "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.2.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", "browser": "./dist/js/treeshaking/browser.js", "files": [ "dist", "hook.d.ts" ], "exports": { ".": { "node": { "jsnext:source": "./src/node.ts", "import": "./dist/js/modern/node.js", "require": "./dist/js/node/node.js" }, "default": "./dist/js/treeshaking/browser.js" }, "./client": { "jsnext:source": "./src/browser.ts", "default": "./dist/js/treeshaking/browser.js" }, "./modern": { "jsnext:source": "./src/browser.ts", "default": "./dist/js/modern/browser.js" }, "./server": { "jsnext:source": "./src/node.ts", "default": "./dist/js/node/node.js" }, "./hook": { "jsnext:source": "./src/hook.ts", "default": "./dist/js/node/hook.js" } }, "typesVersions": { "*": { ".": [ "./dist/types/index.d.ts" ], "client": [ "./dist/types/browser.d.ts" ], "server": [ "./dist/types/node.d.ts" ] } }, "scripts": { "prepare": "pnpm build", "prepublishOnly": "only-allow-pnpm && pnpm build -- --platform", "new": "modern new", "build": "modern build", "test": "jest --passWithNoTests" }, "dependencies": { "@babel/runtime": "^7", "@modern-js/plugin-ssr": "workspace:^1.2.8", "@modern-js/utils": "workspace:^1.6.0", "node-fetch": "^2.6.1", "path-to-regexp": "^6.2.0", "query-string": "^7.1.1" }, "devDependencies": { "@scripts/build": "workspace:*", "@scripts/jest-config": "workspace:*", "@types/jest": "^27.0.3", "@types/node": "^14", "@types/node-fetch": "^2.6.1", "@types/react": "^17", "@types/react-dom": "^17", "isomorphic-fetch": "^3.0.0", "jest": "^27", "nock": "^13.2.1", "typescript": "^4" }, "sideEffects": false, "publishConfig": { "registry": "https://registry.npmjs.org/", "access": "public", "types": "./dist/types/index.d.ts" } }