-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
102 lines (102 loc) · 2.68 KB
/
package.json
File metadata and controls
102 lines (102 loc) · 2.68 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
101
102
{
"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.5.1",
"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": "ncu --upgrade && truncate -s 0 yarn.lock && yarn install"
},
"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/**/*",
"CLAUDE.md"
],
"engines": {
"node": ">=20"
},
"dependencies": {
"@dotenvx/dotenvx": "^1.64.0",
"chalk": "^5.6.2",
"cron": "^4.4.0",
"dayjs": "^1.11.20",
"ini": "^7.0.0",
"js-yaml": "^4.1.1",
"minimist": "^1.2.8",
"uuid": "^14.0.0"
},
"devDependencies": {
"@cspell/eslint-plugin": "^10.0.0",
"@eslint/compat": "^2.0.5",
"@eslint/eslintrc": "^3.3.5",
"@eslint/js": "^10.0.1",
"@faker-js/faker": "^10.4.0",
"@types/ini": "^4.1.1",
"@types/js-yaml": "^4.0.9",
"@types/minimist": "^1.2.5",
"@types/node": "^25.6.0",
"@types/sinonjs__fake-timers": "^15.0.1",
"@typescript-eslint/eslint-plugin": "8.59.1",
"@typescript-eslint/parser": "8.59.1",
"@vitest/coverage-v8": "^4.1.5",
"chalk": "^5.6.2",
"dayjs": "^1.11.20",
"eslint": "10.3.0",
"eslint-config-prettier": "10.1.8",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-jsonc": "^3.1.2",
"eslint-plugin-no-unsanitized": "^4.1.5",
"eslint-plugin-prettier": "^5.5.5",
"eslint-plugin-security": "^4.0.0",
"eslint-plugin-simple-import-sort": "^13.0.0",
"eslint-plugin-sonarjs": "^4.0.3",
"eslint-plugin-sort-keys-fix": "^1.1.2",
"eslint-plugin-unicorn": "^64.0.0",
"ini": "^7.0.0",
"js-yaml": "^4.1.1",
"minimist": "^1.2.8",
"npm-check-updates": "^22.0.1",
"pino": "^10.3.1",
"pino-pretty": "^13.1.3",
"prettier": "^3.8.3",
"tslib": "^2.8.1",
"tsx": "^4.21.0",
"type-fest": "^5.6.0",
"typescript": "^6.0.3",
"uuid": "^14.0.0",
"vitest": "^4.1.5"
},
"packageManager": "yarn@4.14.1"
}