-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 1.69 KB
/
Copy pathpackage.json
File metadata and controls
71 lines (71 loc) · 1.69 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
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
69
70
71
{
"name": "@rtbnext/core",
"description": "Core infrastructure for the RTBNext project",
"version": "2.3.11",
"license": "MIT",
"author": {
"name": "komed3 (Paul Köhler)",
"email": "webmaster@komed3.de",
"url": "https://komed3.de"
},
"homepage": "https://rtbnext.de",
"repository": {
"type": "git",
"url": "git+https://github.com/rtbnext/core.git"
},
"bugs": {
"url": "https://github.com/rtbnext/core/issues"
},
"keywords": [
"rtbnext",
"core"
],
"files": [
"config",
"dist",
"README.md",
"LICENSE"
],
"bin": {
"rtbnext-cli": "dist/bin/cli.js",
"rtbnext-cron": "dist/bin/cron.js"
},
"type": "module",
"types": "./dist/index.d.ts",
"main": "./dist/index.js",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
}
},
"scripts": {
"clean": "rimraf dist",
"format": "prettier --ignore-path \"\" --write \"./dist/**/*.@(js|d.ts)\" --log-level warn",
"build": "tsc && node scripts/copy-dts.mjs && tsc-alias",
"build:clean": "npm run clean && npm run build",
"postbuild": "npm run format",
"prepublishOnly": "npm run build:clean"
},
"dependencies": {
"@isodb/countries": "^0.1.0",
"@isodb/us-states": "^0.1.1",
"@komed3/deepmerge": "^1.2.0",
"@rtbnext/schema": "^2.3.3",
"axios": "^1.20.0",
"cmpstr": "^3.3.0",
"commander": "^15.0.0",
"csv-string": "^4.1.1",
"devtypes": "^2.2.0",
"js-sha256": "^1.0.0",
"nxtcron": "^1.0.1",
"yaml": "^2.9.0"
},
"devDependencies": {
"@types/node": "^26.5.0",
"prettier": "^3.9.6",
"rimraf": "^6.1.3",
"tsc-alias": "^1.9.4",
"typescript": "^7.0.2"
}
}