forked from christophehurpeau/nightingale
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
68 lines (68 loc) · 1.8 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
56
57
58
59
60
61
62
63
64
65
66
67
68
{
"name": "nightingale-string",
"version": "15.0.0",
"description": "String handler for nightingale",
"keywords": [
"nightingale",
"nightingale-handler"
],
"author": "Christophe Hurpeau <[email protected]> (http://christophe.hurpeau.com/)",
"license": "ISC",
"repository": {
"type": "git",
"url": "https://github.com/christophehurpeau/nightingale.git",
"directory": "packages/nightingale-string"
},
"homepage": "https://github.com/christophehurpeau/nightingale",
"type": "module",
"engines": {
"node": ">=18.12.0"
},
"sideEffects": false,
"main": "./dist/index-node18.mjs",
"types": "./dist/definitions/index.d.ts",
"exports": {
"./package.json": "./package.json",
".": {
"types": "./dist/definitions/index.d.ts",
"node": {
"import": "./dist/index-node18.mjs"
}
}
},
"files": [
"src",
"dist"
],
"scripts": {
"build": "yarn clean:build && rollup --config rollup.config.mjs && yarn run build:definitions",
"build:definitions": "tsc -p tsconfig.json",
"clean": "yarn clean:build",
"clean:build": "pob-babel-clean-out dist",
"lint": "yarn run lint:eslint",
"lint:eslint": "yarn ../.. run eslint --report-unused-disable-directives --resolve-plugins-relative-to . --quiet packages/nightingale-string",
"watch": "yarn clean:build && rollup --config rollup.config.mjs --watch"
},
"pob": {
"bundler": "rollup-babel",
"entries": [
"index"
],
"envs": [
{
"target": "node",
"version": "18"
}
]
},
"prettier": "@pob/root/prettier-config",
"dependencies": {
"nightingale-raw-formatter": "15.0.0",
"nightingale-types": "15.0.0"
},
"devDependencies": {
"@babel/core": "7.24.5",
"pob-babel": "40.0.0",
"typescript": "5.4.5"
}
}