-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
67 lines (67 loc) · 1.66 KB
/
package.json
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
{
"name": "@backs/config-parser",
"version": "1.4.1",
"description": "A config parser you can use in your apps. It supports hot-reloading, yaml, ini, toml, xml, json and jsonc. Also supports custom parsers",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "tsup",
"prepublish": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/backiscute/config-parser.git"
},
"keywords": [
"yaml",
"yml",
"xml",
"toml",
"ini",
"json",
"jsonc",
"chokidar",
"config",
"reload"
],
"author": {
"name": "Back",
"email": "me@back.rs",
"url": "https://back.rs"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/backiscute/config-parser/issues"
},
"homepage": "https://github.com/backiscute/config-parser#readme",
"dependencies": {
"chokidar": "^4.0.3",
"fast-xml-parser": "^4.5.1",
"glob": "^11.0.0",
"ini": "^5.0.0",
"is-binary-path": "^3.0.0",
"jsonc-parser": "^3.3.1",
"toml": "^3.0.0",
"yaml": "^2.6.1"
},
"devDependencies": {
"@types/ini": "^4.1.1",
"@types/joi": "^17.2.2",
"@types/node": "^22.10.2",
"joi": "^17.13.3",
"tsup": "^8.3.5",
"typescript": "^5.7.2",
"zod": "^3.24.1"
},
"peerDependencies": {
"joi": "^17.13.3",
"zod": "^3.23.8"
},
"publishConfig": {
"access": "public"
}
}