Skip to content

Instantly share code, notes, and snippets.

@adamjarling
Last active January 3, 2022 21:35
Show Gist options
  • Save adamjarling/f71cf4665eb815f34ae0a960d41afc0f to your computer and use it in GitHub Desktop.
Save adamjarling/f71cf4665eb815f34ae0a960d41afc0f to your computer and use it in GitHub Desktop.
{
"name": "medium-es-build-article-demo",
"version": "1.0.0",
"description": "",
"main": "dist/index.cjs.js",
"module": "dist/index.esm.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "npm run clean && node build.js && tsc --emitDeclarationOnly --outDir dist",
"clean": "rimraf dist",
"dev": "node serve.js",
"prepublishOnly": "npm run build"
},
"author": "",
"license": "ISC",
"devDependencies": {
"chokidar": "^3.5.2",
"esbuild": "^0.14.10",
"live-server": "^1.2.1",
"rimraf": "^3.0.2",
"typescript": "^4.5.4"
},
"dependencies": {
"@types/react": "^17.0.38",
"@types/react-dom": "^17.0.11",
"react": "^17.0.2",
"react-dom": "^17.0.2"
},
"files": [
"dist"
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment