-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 897 Bytes
/
package.json
File metadata and controls
41 lines (41 loc) · 897 Bytes
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
{
"name": "@uwu/configmasher",
"version": "2.0.2",
"description": "NodeJS Config aggregator",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"type": "module",
"repository": {
"url": "https://github.com/uwu/configmasher.git",
"type": "git"
},
"bugs": {
"url": "https://github.com/uwu/configmasher/issues"
},
"homepage": "https://github.com/uwu/configmasher#readme",
"scripts": {
"prepublish": "pnpm build",
"build": "rimraf dist && tsc"
},
"keywords": [
"config",
"dotenv",
"config-aggregator",
"config-parser"
],
"author": "Phorcys",
"license": "CC0-1.0",
"dependencies": {
"defu": "^6.1.4",
"dotenv": "^16.4.5"
},
"devDependencies": {
"@types/node": "^20.12.7",
"rimraf": "^6.0.1",
"typescript": "^5.5.4"
},
"publishConfig": {
"access": "public"
},
"packageManager": "pnpm@9.7.0"
}