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.
65 lines
1.6 KiB
65 lines
1.6 KiB
{
|
|
"name": "unconfig",
|
|
"version": "0.3.9",
|
|
"packageManager": "pnpm@8.5.1",
|
|
"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.7.2",
|
|
"defu": "^6.1.2",
|
|
"jiti": "^1.18.2"
|
|
},
|
|
"devDependencies": {
|
|
"@antfu/eslint-config": "^0.39.2",
|
|
"@antfu/ni": "^0.21.3",
|
|
"@types/node": "^20.2.3",
|
|
"bumpp": "^9.1.0",
|
|
"eslint": "^8.41.0",
|
|
"esno": "^0.16.3",
|
|
"lodash-es": "^4.17.21",
|
|
"typescript": "^5.0.4",
|
|
"unbuild": "^1.2.1",
|
|
"vitest": "^0.31.1"
|
|
},
|
|
"scripts": {
|
|
"build": "unbuild",
|
|
"dev": "unbuild --stub",
|
|
"lint": "eslint .",
|
|
"release": "bumpp --commit --push --tag && pnpm publish",
|
|
"start": "esno src/index.ts",
|
|
"test": "vitest"
|
|
}
|
|
}
|