-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
45 lines (45 loc) · 1.2 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
{
"name": "nightingale-level-names",
"version": "15.0.0",
"description": "Nightingale level values to level names",
"keywords": [
"logger"
],
"author": "Christophe Hurpeau <[email protected]> (http://christophe.hurpeau.com/)",
"license": "ISC",
"repository": {
"type": "git",
"url": "https://github.com/christophehurpeau/nightingale.git",
"directory": "packages/nightingale-level-names"
},
"homepage": "https://github.com/christophehurpeau/nightingale",
"type": "module",
"engines": {
"node": ">=20.9.0"
},
"sideEffects": false,
"main": "./lib/index.cjs",
"types": "./lib/index.d.ts",
"exports": {
".": {
"types": "./lib/index.d.ts",
"import": "./lib/index.js",
"require": "./lib/index.cjs"
},
"./package.json": "./package.json"
},
"files": [
"lib"
],
"scripts": {
"build": "yarn run build:definitions",
"build:definitions": "tsc --lib esnext --noEmit --skipLibCheck ./lib/index.d.ts",
"lint": "yarn run lint:eslint",
"lint:eslint": "yarn ../.. run eslint --quiet packages/nightingale-level-names"
},
"pob": {},
"prettier": "@pob/root/prettier-config",
"devDependencies": {
"typescript": "5.7.2"
}
}