Urara-Blog/node_modules/.pnpm-store/v3/files/09/5d0f60e32c61b15b8c4a9acaac6f074c51ce436cbd478ba26a6ab415085454205c982cc0f460e60a34a591576f9d824686b447a6459983eca573827bcbf776
2022-08-14 01:14:53 +08:00

52 lines
No EOL
1.3 KiB
Text

{
"name": "@antfu/install-pkg",
"version": "0.1.0",
"description": "Install package programmatically.",
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"exports": {
".": {
"require": "./dist/index.js",
"import": "./dist/index.mjs"
}
},
"funding": "https://github.com/sponsors/antfu",
"author": "Anthony Fu <anthonyfu117@hotmail.com>",
"license": "MIT",
"sideEffects": false,
"bugs": {
"url": "https://github.com/antfu/install-pkg/issues"
},
"homepage": "https://github.com/antfu/install-pkg#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/antfu/install-pkg.git"
},
"keywords": [],
"files": [
"dist"
],
"devDependencies": {
"@antfu/eslint-config": "^0.7.0",
"@antfu/ni": "^0.7.0",
"@types/node": "^16.10.1",
"bumpp": "^7.1.1",
"eslint": "^7.32.0",
"esno": "^0.9.1",
"tsup": "^4.14.0",
"typescript": "^4.4.3"
},
"dependencies": {
"execa": "^5.1.1",
"find-up": "^5.0.0"
},
"scripts": {
"dev": "nr build --watch",
"start": "esno src/index.ts",
"build": "tsup src/index.ts --format cjs,esm --dts --no-splitting",
"release": "bumpp --commit --push --tag && pnpm publish",
"lint": "eslint \"{src,test}/**/*.ts\"",
"lint:fix": "nr lint -- --fix"
}
}