forked from hunghg255/unreadconfig
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
89 lines (89 loc) · 1.9 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
{
"name": "unreadconfig",
"version": "0.0.10",
"license": "MIT",
"sideEffects": false,
"exports": {
".": {
"types": "./dist/index.d.ts",
"require": "./dist/index.cjs",
"import": "./dist/index.mjs"
}
},
"main": "./dist/index.mjs",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"files": [
"bin",
"dist",
"LICENSE"
],
"scripts": {
"build": "unbuild",
"dev": "unbuild --stub",
"test:cli": "node ./dist/cli.mjs -w -p 1234 -c awesome",
"lint": "tsc --noEmit",
"start": "esno play/index.ts",
"test": "vitest",
"verify-commit": "verify-commit-msg",
"prepare": "git-scm-hooks",
"release": "bumpp -r && npm publish"
},
"author": "hunghg255",
"devDependencies": {
"@types/ini": "^1.3.31",
"@types/lodash.merge": "^4.6.7",
"@types/node": "^18.17.13",
"bumpp": "^9.2.0",
"esno": "^0.16.3",
"git-scm-hooks": "^0.0.7",
"terser": "^5.19.3",
"tslib": "^2.6.2",
"typescript": "^5.2.2",
"verify-commit-msg": "^0.0.9"
},
"dependencies": {
"ini": "^4.1.1",
"jiti": "^1.19.3",
"jsonc-eslint-parser": "^2.3.0",
"lodash.merge": "^4.6.2",
"sucrase": "^3.34.0",
"toml-eslint-parser": "^0.6.0",
"unbuild": "^1.2.1",
"yaml-eslint-parser": "^1.2.2"
},
"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"
],
"svgtofont": {
"foo": "bar"
}
}