-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
101 lines (101 loc) · 2.75 KB
/
package.json
File metadata and controls
101 lines (101 loc) · 2.75 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
{
"name": "@map-colonies/config",
"version": "4.0.1",
"description": "Config package for MapColonies with support for central config management",
"main": "dist/index.js",
"exports": {
".": {
"types": "./dist/index.d.ts",
"require": "./dist/index.js",
"import": "./dist/index.js"
}
},
"scripts": {
"format": "prettier --check .",
"format:fix": "prettier --write .",
"prelint:fix": "npm run format:fix",
"prelint": "npm run format",
"lint": "eslint .",
"lint:fix": "eslint --fix .",
"pretest": "npm run generate:version",
"test": "vitest run",
"test:watch": "vitest",
"test:ui": "vitest --ui",
"prebuild": "npm run clean && npm run generate:version",
"build": "tsc --project tsconfig.build.json",
"start": "npm run build && cd dist && node ./index.js",
"clean": "rimraf dist",
"prepublish": "npm run build",
"generate:version": "node scripts/generateVersionFile.mjs",
"prepare": "husky",
"docs": "typedoc src/index.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/MapColonies/config.git"
},
"author": "MapColonies",
"license": "ISC",
"bugs": {
"url": "https://github.com/MapColonies/config/issues"
},
"publishConfig": {
"access": "public"
},
"files": [
"dist/**/*"
],
"homepage": "https://github.com/MapColonies/config#readme",
"engines": {
"node": ">=24.0.0"
},
"dependencies": {
"@apideck/better-ajv-errors": "^0.3.6",
"@apidevtools/json-schema-ref-parser": "^15.3.5",
"@map-colonies/read-pkg": "^0.0.1",
"@types/lodash": "^4.17.0",
"ajv": "^8.16.0",
"ajv-formats": "^3.0.1",
"config": "^3.3.11",
"debug": "^4.3.5",
"deepmerge": "^4.3.1",
"http-status-codes": "^2.3.0",
"lodash": "^4.17.21",
"semver": "^7.6.2",
"undici": "^7.3.0"
},
"peerDependencies": {
"@map-colonies/schemas": "^1.9.0",
"prom-client": "^15.0.0"
},
"peerDependenciesMeta": {
"prom-client": {
"optional": true
}
},
"devDependencies": {
"@commitlint/cli": "^19.6.1",
"@map-colonies/commitlint-config": "^2.0.0",
"@map-colonies/eslint-config": "^7.1.0",
"@map-colonies/infra-copilot-instructions": "^1.0.0",
"@map-colonies/tsconfig": "^2.0.0",
"@types/config": "^3.3.4",
"@types/debug": "^4.1.12",
"@types/node": "^24.0.0",
"@types/semver": "^7.5.8",
"commitlint": "^19.6.1",
"cross-env": "^7.0.3",
"eslint": "^9.39.2",
"husky": "^9.1.7",
"jest-extended": "^4.0.2",
"prettier": "^3.4.2",
"pretty-quick": "^4.0.0",
"prom-client": "^15.0.0",
"rimraf": "^6.0.1",
"typedoc": "0.28.16",
"typescript": "^5.9.3",
"vitest": "4.0.18",
"@vitest/ui": "4.0.18",
"@vitest/coverage-v8": "4.0.18"
}
}