-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
55 lines (55 loc) · 1.48 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
{
"name": "nightingale-raw-formatter",
"version": "15.0.0",
"description": "Deprecated: use RawFormatter from nightingale",
"keywords": [
"nightingale",
"nightingale-formatter"
],
"author": "Christophe Hurpeau <[email protected]> (http://christophe.hurpeau.com/)",
"license": "ISC",
"repository": {
"type": "git",
"url": "https://github.com/christophehurpeau/nightingale.git",
"directory": "packages/nightingale-raw-formatter"
},
"homepage": "https://github.com/christophehurpeau/nightingale",
"type": "module",
"engines": {
"node": ">=18.12.0"
},
"sideEffects": false,
"main": "./lib/index.js",
"types": "./lib/index.d.ts",
"exports": {
"./package.json": "./package.json",
".": {
"types": "./dist/definitions/index.d.ts",
"node": {
"import": "./dist/index-node18.mjs"
},
"browser": {
"import": "./dist/index-browser.es.js"
}
}
},
"files": [
"lib"
],
"scripts": {
"clean": "yarn clean:build",
"lint": "yarn run lint:eslint",
"lint:eslint": "yarn ../.. run eslint --quiet packages/nightingale-raw-formatter",
"test": "yarn ../../ run test -- packages/nightingale-raw-formatter",
"watch": "yarn clean:build && rollup --config rollup.config.mjs --watch"
},
"pob": {},
"prettier": "@pob/root/prettier-config",
"dependencies": {
"nightingale": "15.0.0",
"nightingale-types": "15.0.0"
},
"devDependencies": {
"nightingale-levels": "15.0.0"
}
}