-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1020 Bytes
/
Copy pathpackage.json
File metadata and controls
48 lines (48 loc) · 1020 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
42
43
44
45
46
47
48
{
"name": "config-manager",
"version": "0.1.0",
"type": "module",
"description": "A Node.js library for discovering, parsing, and managing configuration files",
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.js"
}
},
"scripts": {
"build": "tsup",
"dev": "tsup --watch",
"typecheck": "tsc --noEmit",
"test": "echo 'Tests coming soon'",
"prepublishOnly": "npm run build"
},
"keywords": [
"config",
"configuration",
"discovery",
"parser",
"typescript",
"nodejs"
],
"author": "Your Name",
"license": "MIT",
"dependencies": {
"fast-glob": "^3.3.2",
"dotenv": "^16.4.5",
"yaml": "^2.5.0",
"chokidar": "^3.6.0"
},
"devDependencies": {
"@types/node": "^22.7.4",
"tsup": "^8.3.0",
"typescript": "^5.6.3"
},
"files": [
"dist",
"README.md"
]
}