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.
61 lines
1.4 KiB
61 lines
1.4 KiB
2 years ago
|
{
|
||
|
"name": "local-pkg",
|
||
|
"version": "0.4.2",
|
||
|
"packageManager": "pnpm@7.5.0",
|
||
|
"description": "Get information on local packages.",
|
||
|
"author": "Anthony Fu <anthonyfu117@hotmail.com>",
|
||
|
"license": "MIT",
|
||
|
"funding": "https://github.com/sponsors/antfu",
|
||
|
"homepage": "https://github.com/antfu/local-pkg#readme",
|
||
|
"repository": {
|
||
|
"type": "git",
|
||
|
"url": "git+https://github.com/antfu/local-pkg.git"
|
||
|
},
|
||
|
"bugs": {
|
||
|
"url": "https://github.com/antfu/local-pkg/issues"
|
||
|
},
|
||
|
"keywords": [
|
||
|
"package"
|
||
|
],
|
||
|
"sideEffects": false,
|
||
|
"exports": {
|
||
|
".": {
|
||
|
"require": "./index.cjs",
|
||
|
"import": "./index.mjs"
|
||
|
}
|
||
|
},
|
||
|
"main": "index.cjs",
|
||
|
"module": "index.mjs",
|
||
|
"types": "index.d.ts",
|
||
|
"files": [
|
||
|
"dist",
|
||
|
"index.cjs",
|
||
|
"index.mjs",
|
||
|
"index.d.ts"
|
||
|
],
|
||
|
"engines": {
|
||
|
"node": ">=14"
|
||
|
},
|
||
|
"scripts": {
|
||
|
"prepublishOnly": "nr build",
|
||
|
"build": "tsup shared.ts --format esm,cjs --dts && esno scripts/postbuild.ts",
|
||
|
"lint": "eslint .",
|
||
|
"release": "bumpp && npm publish",
|
||
|
"test": "node test/cjs.cjs && node test/esm.mjs"
|
||
|
},
|
||
|
"devDependencies": {
|
||
|
"@antfu/eslint-config": "^0.25.2",
|
||
|
"@antfu/ni": "^0.16.3",
|
||
|
"@antfu/utils": "^0.5.2",
|
||
|
"@types/chai": "^4.3.1",
|
||
|
"@types/node": "^18.0.3",
|
||
|
"bumpp": "^8.2.1",
|
||
|
"chai": "^4.3.6",
|
||
|
"eslint": "^8.19.0",
|
||
|
"esno": "^0.16.3",
|
||
|
"find-up": "^6.3.0",
|
||
|
"tsup": "^6.1.3",
|
||
|
"typescript": "^4.7.4"
|
||
|
}
|
||
|
}
|