-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
99 lines (99 loc) · 2.26 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
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
{
"name": "unreadconfig",
"version": "0.1.0",
"type": "module",
"license": "MIT",
"main": "./dist/index.cjs",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"exports": {
"import": {
"types": "./dist/index.d.mts",
"default": "./dist/index.mjs"
},
"require": {
"types": "./dist/index.d.cts",
"default": "./dist/index.cjs"
}
},
"sideEffects": false,
"typesVersions": {
"*": {
"*": [
"./dist/*",
"./dist/index.d.ts"
]
}
},
"files": [
"dist",
"LICENSE"
],
"scripts": {
"build": "unbuild",
"dev": "unbuild --stub",
"test:cli": "node ./dist/cli.mjs -w -p 1234 -c awesome",
"lint": "eslint src",
"start": "esno play/index.ts",
"test": "vitest",
"verify-commit": "verify-commit-msg",
"prepare": "git-scm-hooks",
"prepublishOnly": "npm run build",
"release": "bumpp -r && npm publish"
},
"author": "hunghg255",
"devDependencies": {
"@antfu/eslint-config": "^3.7.2",
"@types/ini": "^1.3.34",
"@types/lodash.merge": "^4.6.9",
"@types/node": "^18.19.53",
"bumpp": "^9.5.2",
"eslint": "^9.11.1",
"esno": "^0.16.3",
"git-scm-hooks": "^0.0.7",
"typescript": "^5.6.2",
"unbuild": "^2.0.0",
"verify-commit-msg": "^0.0.9"
},
"dependencies": {
"ini": "^4.1.3",
"jiti": "^2.0.0",
"jsonc-eslint-parser": "^2.4.0",
"lodash.merge": "^4.6.2",
"sucrase": "^3.35.0",
"toml-eslint-parser": "^0.6.1",
"yaml-eslint-parser": "^1.2.3"
},
"git-hooks": {
"pre-commit": "npm run lint",
"commit-msg": "npm run verify-commit"
},
"homepage": "https://github.com/hunghg255/unreadconfig.git",
"repository": {
"type": "git",
"url": "https://github.com/hunghg255/unreadconfig.git"
},
"keywords": [
"rc",
"config",
"loader",
"load",
"configuration",
"cjs",
"commonjs",
"esm",
"es module",
"yml-config",
"js-config",
"ts-config",
"toml-config",
"yml",
"js",
"ts",
"toml",
"typescript",
"config-loader",
"auto-config-loader"
],
"packageManager": "[email protected]+sha512.499434c9d8fdd1a2794ebf4552b3b25c0a633abcee5bb15e7b5de90f32f47b513aca98cd5cfd001c31f0db454bc3804edccd578501e4ca293a6816166bbd9f81"
}