UNPKG

utquidem

Version:

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

88 lines (87 loc) 2.42 kB
{ "name": "@modern-js/runtime-core", "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.3", "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" }, "./styled": { "jsnext:source": "./src/styled.ts", "node": { "import": "./dist/js/modern/styled.js", "require": "./dist/js/node/styled.js" }, "default": "./dist/js/treeshaking/styled.js" } }, "typesVersions": { "*": { ".": [ "./dist/types/index.d.ts" ], "styled": [ "./dist/types/styled.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": "workspace:^1.3.3", "@types/styled-components": "^5.1.14", "hoist-non-react-statics": "^3.3.2", "invariant": "^2.2.4", "styled-components": "^5.3.1" }, "devDependencies": { "@modern-js/types": "workspace:*", "@testing-library/react": "^12.0.0", "@testing-library/react-hooks": "^7.0.1", "@types/hoist-non-react-statics": "^3.3.1", "@types/invariant": "^2.2.30", "@types/jest": "^26", "@types/node": "^14", "@types/react": "^17", "@types/react-dom": "^17", "react": "^17.0.2", "react-dom": "^17.0.2", "ts-jest": "^27.0.4", "typescript": "^4", "@scripts/build": "workspace:*", "jest": "^27", "@scripts/jest-config": "workspace:*" }, "sideEffects": false, "publishConfig": { "registry": "https://registry.npmjs.org/", "access": "public", "types": "./dist/types/index.d.ts" } }