You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
53 lines
1.3 KiB
53 lines
1.3 KiB
{
|
|
"name": "@antfu/install-pkg",
|
|
"version": "0.1.1",
|
|
"packageManager": "pnpm@7.12.0",
|
|
"description": "Install package programmatically.",
|
|
"author": "Anthony Fu <anthonyfu117@hotmail.com>",
|
|
"license": "MIT",
|
|
"funding": "https://github.com/sponsors/antfu",
|
|
"homepage": "https://github.com/antfu/install-pkg#readme",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/antfu/install-pkg.git"
|
|
},
|
|
"bugs": {
|
|
"url": "https://github.com/antfu/install-pkg/issues"
|
|
},
|
|
"keywords": [],
|
|
"sideEffects": false,
|
|
"exports": {
|
|
".": {
|
|
"types": "./dist/index.d.ts",
|
|
"require": "./dist/index.js",
|
|
"import": "./dist/index.mjs"
|
|
}
|
|
},
|
|
"main": "dist/index.js",
|
|
"module": "dist/index.mjs",
|
|
"types": "dist/index.d.ts",
|
|
"files": [
|
|
"dist"
|
|
],
|
|
"dependencies": {
|
|
"execa": "^5.1.1",
|
|
"find-up": "^5.0.0"
|
|
},
|
|
"devDependencies": {
|
|
"@antfu/eslint-config": "^0.27.0",
|
|
"@antfu/ni": "^0.18.0",
|
|
"@types/node": "^16.11.59",
|
|
"bumpp": "^8.2.1",
|
|
"eslint": "^8.23.1",
|
|
"esno": "^0.16.3",
|
|
"tsup": "^6.2.3",
|
|
"typescript": "^4.8.3"
|
|
},
|
|
"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 ."
|
|
}
|
|
}
|