@commenthol/app-config
Version:
set values in global app configuration
76 lines • 1.82 kB
JSON
{
"name": "@commenthol/app-config",
"version": "0.1.1",
"description": "set values in global app configuration",
"keywords": [
"app-config"
],
"homepage": "https://gitlab.com/commenthol/app-config",
"bugs": {
"url": "https://gitlab.com/commenthol/app-config/-/issues"
},
"repository": {
"type": "git",
"url": "git+https://gitlab.com/commenthol/app-config.git"
},
"license": "MIT-0",
"author": "commenthol <commenthol@gmail.com>",
"maintainers": [
"commenthol <commenthol@gmail.com>"
],
"sideEffects": false,
"type": "module",
"imports": {
"#*": {
"default": "./src/*"
}
},
"exports": {
"types": "./types/index.d.ts",
"default": "./src/index.js"
},
"types": "./types/index.d.ts",
"files": [
"src",
"types"
],
"mocha": {
"checkLeaks": true,
"exit": false
},
"dependencies": {
"debug": "^4.4.0",
"mergee": "^2.0.1",
"valibot": "1.0.0-rc.1"
},
"devDependencies": {
"@types/node": "^22.13.5",
"c8": "^10.1.3",
"eslint": "^9.21.0",
"eslint-config-prettier": "^10.0.1",
"eslint-plugin-prettier": "^5.2.3",
"globals": "^16.0.0",
"mocha": "^11.1.0",
"npm-run-all2": "^7.0.2",
"rimraf": "^6.0.1",
"typescript": "^5.7.3"
},
"engines": {
"node": ">=20.0.0"
},
"publishConfig": {
"access": "public"
},
"scripts": {
"all": "npm-run-all clean lint c8 types",
"ci": "CI=true npm run all",
"clean": "rimraf dist lib es coverage",
"clean:all": "npm run clean && rimraf node_modules",
"c8": "c8 -r text -r html -r lcov npm test",
"changelog": "conv-changelog -i CHANGELOG.md -o",
"lint": "eslint .",
"readme": "markedpp --githubid -i README.md -o README.md",
"test": "mocha",
"types": "rimraf types; tsc"
}
}