67 lines
1.6 KiB
JSON
67 lines
1.6 KiB
JSON
{
|
|
"name": "unplugin-utils",
|
|
"version": "0.3.1",
|
|
"description": "A set of utility functions commonly used by unplugins.",
|
|
"type": "module",
|
|
"license": "MIT",
|
|
"homepage": "https://github.com/sxzz/unplugin-utils#readme",
|
|
"bugs": {
|
|
"url": "https://github.com/sxzz/unplugin-utils/issues"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/sxzz/unplugin-utils.git"
|
|
},
|
|
"author": "Kevin Deng <sxzz@sxzz.moe>",
|
|
"funding": "https://github.com/sponsors/sxzz",
|
|
"files": [
|
|
"dist"
|
|
],
|
|
"main": "./dist/index.js",
|
|
"module": "./dist/index.js",
|
|
"types": "./dist/index.d.ts",
|
|
"exports": {
|
|
".": "./dist/index.js",
|
|
"./package.json": "./package.json"
|
|
},
|
|
"publishConfig": {
|
|
"access": "public"
|
|
},
|
|
"dependencies": {
|
|
"pathe": "^2.0.3",
|
|
"picomatch": "^4.0.3"
|
|
},
|
|
"devDependencies": {
|
|
"@sxzz/eslint-config": "^7.2.7",
|
|
"@sxzz/prettier-config": "^2.2.4",
|
|
"@types/node": "^24.7.0",
|
|
"@types/picomatch": "^4.0.2",
|
|
"@vitest/coverage-v8": "3.2.4",
|
|
"bumpp": "^10.3.1",
|
|
"eslint": "^9.37.0",
|
|
"oxc-transform": "^0.94.0",
|
|
"prettier": "^3.6.2",
|
|
"tsdown": "^0.15.6",
|
|
"tsx": "^4.20.6",
|
|
"typescript": "^5.9.3",
|
|
"vitest": "^3.2.4"
|
|
},
|
|
"engines": {
|
|
"node": ">=20.19.0"
|
|
},
|
|
"prettier": "@sxzz/prettier-config",
|
|
"tsdown": {
|
|
"platform": "neutral",
|
|
"exports": true
|
|
},
|
|
"scripts": {
|
|
"lint": "eslint --cache .",
|
|
"lint:fix": "pnpm run lint --fix",
|
|
"build": "tsdown",
|
|
"dev": "tsdown --watch",
|
|
"test": "vitest",
|
|
"typecheck": "tsc --noEmit",
|
|
"format": "prettier --cache --write .",
|
|
"release": "bumpp"
|
|
}
|
|
} |