mirror of
https://github.com/Sevichecc/Urara-Blog.git
synced 2025-05-06 07:19:14 +08:00
52 lines
No EOL
1.3 KiB
Text
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"
|
|
}
|
|
} |