-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
86 lines (86 loc) · 2.44 KB
/
Copy pathpackage.json
File metadata and controls
86 lines (86 loc) · 2.44 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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
{
"name": "softkave-forerunner",
"version": "0.29.2",
"description": "softkave application runner & helpers for MongoDB, Postgres, certificates and other services",
"author": {
"email": "ywordk@gmail.com",
"name": "softkave"
},
"license": "MIT",
"homepage": "https://github.com/softkave/forerunner/tree/main/",
"repository": {
"type": "git",
"url": "git+https://github.com/softkave/forerunner.git"
},
"bugs": {
"url": "https://github.com/softkave/forerunner/issues"
},
"keywords": [],
"type": "module",
"main": "build/src/index.js",
"types": "build/src/index.d.ts",
"files": [
"build/src/{*.js,**/*.js}",
"build/src/{*.js.map,**/*.js.map}",
"build/src/{*.d.ts,**/*.d.ts}",
"build/version.txt",
"!build/src/**/__tests__/**/*",
"!build/src/**/testutils/**/*",
"!build/src/private*"
],
"bin": "build/src/bin.js",
"scripts": {
"test": "vitest run",
"lint": "gts lint",
"clean": "gts clean && rm -f tsconfig.tsbuildinfo",
"compile": "npm run clean && tsc && npm run write-version-file && npm run copy-version-file",
"write-version-file": "npx -y -- tsx src/version.ts",
"copy-version-file": "cp version.txt build/version.txt",
"fix": "gts fix",
"publish:npm": "npm run compile && npm publish",
"publish:yalc": "npm run compile && yalc publish",
"show:packlist": "npm run compile && npm pack --dry-run",
"prepare": "husky"
},
"engines": {
"node": ">=22"
},
"devDependencies": {
"@eslint/eslintrc": "^3.3.3",
"@eslint/js": "^9.39.2",
"@faker-js/faker": "^8.4.1",
"@types/express": "^4.17.21",
"@types/fs-extra": "^11.0.4",
"@types/js-yaml": "^4.0.9",
"@types/lodash-es": "^4.17.12",
"@types/node": "22.2.0",
"@types/pg": "^8.16.0",
"commander": "^14.0.1",
"get-port": "^7.1.0",
"gts": "^7.0.0",
"husky": "^9.1.7",
"typescript": "~5.4.3",
"vitest": "^4.1.10"
},
"dependencies": {
"@inquirer/checkbox": "^5.1.3",
"@inquirer/select": "^5.2.1",
"dotenv": "^16.4.5",
"express": "^4",
"find-process": "^2.0.0",
"fs-extra": "^11.2.0",
"generate-password": "^1.7.1",
"js-yaml": "^4.1.0",
"lodash-es": "^4.18.1",
"loglevel": "^1.9.2",
"mongodb": "^6.19.0",
"node-fetch": "^3.3.2",
"p-retry": "^7.1.1",
"pg": "^8.18.0",
"softkave-js-utils": "^0.7.0",
"tsx": "^4.20.6",
"type-fest": "^4.15.0",
"zod": "^3.23.8",
"zx": "^8.1.4"
}
}