-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.01 KB
/
Copy pathpackage.json
File metadata and controls
42 lines (42 loc) · 1.01 KB
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
{
"name": "basic-node-logger",
"version": "1.0.1",
"description": "A basic Node.js logger with simple configuration",
"type": "module",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/chrisBas/basic-node-logger.git"
},
"homepage": "https://github.com/chrisBas/basic-node-logger#readme",
"bugs": {
"url": "https://github.com/chrisBas/basic-node-logger/issues"
},
"exports": {
".": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
}
},
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"scripts": {
"build": "tsup",
"dev": "tsup --watch",
"clean": "rm -rf dist",
"prepublishOnly": "npm run clean && npm run build",
"test:smoke": "node ./smoke.mjs"
},
"keywords": [],
"files": [
"dist",
"README.md",
"LICENSE"
],
"author": "Christian Basile <basile.christian94@gmail.com>",
"devDependencies": {
"@types/node": "^25.0.9",
"tsup": "^8.5.1",
"typescript": "^5.9.3"
}
}