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.
64 lines
1.5 KiB
64 lines
1.5 KiB
{
|
|
"name": "unconfig",
|
|
"version": "0.3.7",
|
|
"packageManager": "pnpm@7.9.0",
|
|
"description": "A universal solution for loading configurations.",
|
|
"author": "Anthony Fu <anthonyfu117@hotmail.com>",
|
|
"license": "MIT",
|
|
"funding": "https://github.com/sponsors/antfu",
|
|
"homepage": "https://github.com/antfu/unconfig#readme",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/antfu/unconfig.git"
|
|
},
|
|
"bugs": {
|
|
"url": "https://github.com/antfu/unconfig/issues"
|
|
},
|
|
"keywords": [
|
|
"config"
|
|
],
|
|
"sideEffects": false,
|
|
"exports": {
|
|
".": {
|
|
"types": "./dist/index.d.ts",
|
|
"require": "./dist/index.cjs",
|
|
"import": "./dist/index.mjs"
|
|
},
|
|
"./presets": {
|
|
"types": "./dist/presets.d.ts",
|
|
"require": "./dist/presets.cjs",
|
|
"import": "./dist/presets.mjs"
|
|
}
|
|
},
|
|
"main": "./dist/index.cjs",
|
|
"module": "./dist/index.mjs",
|
|
"types": "./dist/index.d.ts",
|
|
"files": [
|
|
"dist",
|
|
"*.d.ts"
|
|
],
|
|
"dependencies": {
|
|
"@antfu/utils": "^0.5.2",
|
|
"defu": "^6.1.0",
|
|
"jiti": "^1.16.0"
|
|
},
|
|
"devDependencies": {
|
|
"@antfu/eslint-config": "^0.27.0",
|
|
"@antfu/ni": "^0.18.2",
|
|
"@types/node": "^18.8.3",
|
|
"bumpp": "^8.2.1",
|
|
"eslint": "^8.25.0",
|
|
"esno": "^0.16.3",
|
|
"typescript": "^4.8.4",
|
|
"unbuild": "^0.8.11",
|
|
"vitest": "^0.24.0"
|
|
},
|
|
"scripts": {
|
|
"build": "unbuild",
|
|
"dev": "unbuild --stub",
|
|
"lint": "eslint .",
|
|
"release": "bumpp --commit --push --tag && pnpm publish",
|
|
"start": "esno src/index.ts",
|
|
"test": "vitest"
|
|
}
|
|
}
|