File size: 1,020 Bytes
1e92f2d |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 |
{
"name": "@automattic/calypso-router",
"version": "0.7.0",
"description": "Calypso router based on page.js.",
"author": "Automattic Inc.",
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"calypso:src": "src/index.js",
"exports": {
".": {
"calypso:src": "./src/index.js",
"types": "./types/index.d.ts",
"import": "./dist/esm/index.js",
"require": "./dist/cjs/index.js"
}
},
"sideEffects": false,
"scripts": {
"clean": "rm -rf dist",
"build": "transpile",
"prepack": "yarn run clean && yarn run build"
},
"files": [
"dist",
"src",
"types"
],
"types": "types",
"keywords": [
"router"
],
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Automattic/wp-calypso.git",
"directory": "packages/calypso-router"
},
"license": "GPL-2.0-or-later",
"bugs": "https://github.com/Automattic/wp-calypso/issues",
"homepage": "https://github.com/Automattic/wp-calypso/tree/HEAD/packages/calypso-router#readme"
}
|