-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
100 lines (100 loc) · 2.6 KB
/
package.json
File metadata and controls
100 lines (100 loc) · 2.6 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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
{
"type": "module",
"name": "@digital-alchemy/core",
"description": "Application wiring, configuration, and boilerplate utilities",
"repository": {
"url": "git+https://github.com/Digital-Alchemy-TS/core"
},
"version": "26.2.17",
"author": {
"url": "https://github.com/zoe-codez",
"name": "Zoe Codez"
},
"types": "dist/index.d.mts",
"homepage": "https://docs.digital-alchemy.app",
"scripts": {
"build": "rm -rf dist/; tsc -p tsconfig.lib.json",
"lint": "eslint src",
"test": "vitest",
"upgrade": "yarn up '@digital-alchemy/*'"
},
"bugs": {
"email": "bugs@digital-alchemy.app",
"url": "https://github.com/Digital-Alchemy-TS/core/issues/new/choose"
},
"keywords": [
"nodejs",
"boilerplate",
"automation",
"typescript",
"core",
"digital-alchemy"
],
"funding": [
{
"url": "https://github.com/sponsors/zoe-codez",
"type": "GitHub"
}
],
"exports": {
".": "./dist/index.mjs",
"./testing": "./dist/testing/helpers/index.mjs"
},
"files": [
"dist/**/*"
],
"engines": {
"node": ">=20"
},
"dependencies": {
"@dotenvx/dotenvx": "^1.51.4",
"chalk": "^5.6.2",
"cron": "^4.4.0",
"dayjs": "^1.11.19",
"ini": "^6.0.0",
"js-yaml": "^4.1.1",
"minimist": "^1.2.8",
"uuid": "^13.0.0"
},
"devDependencies": {
"@cspell/eslint-plugin": "^10.0.0",
"@eslint/compat": "^2.0.0",
"@eslint/eslintrc": "^3.3.3",
"@eslint/js": "^9.39.2",
"@faker-js/faker": "^10.2.0",
"@types/ini": "^4.1.1",
"@types/js-yaml": "^4.0.9",
"@types/minimist": "^1.2.5",
"@types/node": "^25.0.3",
"@types/sinonjs__fake-timers": "^15.0.1",
"@typescript-eslint/eslint-plugin": "8.58.2",
"@typescript-eslint/parser": "8.58.2",
"@vitest/coverage-v8": "^4.0.16",
"chalk": "^5.6.2",
"dayjs": "^1.11.19",
"eslint": "10.2.1",
"eslint-config-prettier": "10.1.8",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-jsonc": "^2.21.0",
"eslint-plugin-no-unsanitized": "^4.1.4",
"eslint-plugin-prettier": "^5.5.4",
"eslint-plugin-security": "^4.0.0",
"eslint-plugin-simple-import-sort": "^12.1.1",
"eslint-plugin-sonarjs": "^4.0.0",
"eslint-plugin-sort-keys-fix": "^1.1.2",
"eslint-plugin-unicorn": "^63.0.0",
"ini": "^6.0.0",
"js-yaml": "^4.1.1",
"minimist": "^1.2.8",
"pino": "^10.1.0",
"pino-pretty": "^13.1.3",
"prettier": "^3.7.4",
"tslib": "^2.8.1",
"tsx": "^4.21.0",
"type-fest": "^5.3.1",
"typescript": "^5.9.3",
"uuid": "^13.0.0",
"vitest": "^4.0.16"
},
"packageManager": "yarn@4.12.0"
}