-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.01 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.01 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
{
"name": "@zhin.js/kernel",
"version": "0.0.29",
"description": "Framework-agnostic runtime kernel: Plugin DI, Feature, Config, Cron, Scheduler, errors, utilities",
"type": "module",
"main": "./lib/index.js",
"types": "./lib/index.d.ts",
"exports": {
".": {
"types": "./lib/index.d.ts",
"development": "./src/index.ts",
"import": "./lib/index.js"
}
},
"files": [
"lib"
],
"scripts": {
"build": "tsc",
"clean": "rimraf lib",
"test": "vitest run --config ../../vitest.config.ts"
},
"dependencies": {
"@zhin.js/logger": "workspace:*",
"@zhin.js/schema": "workspace:*",
"croner": "^9.1.0",
"yaml": "^2.3.4",
"smol-toml": "^1.6.0"
},
"devDependencies": {
"@types/node": "^24.3.0",
"typescript": "^6.0.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/zhinjs/zhin.git",
"directory": "packages/kernel"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org"
}
}