-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.31 KB
/
Copy pathpackage.json
File metadata and controls
61 lines (61 loc) · 1.31 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
{
"name": "synthkernel",
"version": "0.1.0",
"description": "A type-safe and composable meta architecture for modular monolith development.",
"keywords": [
"agent-skills",
"agentic-coding",
"architecture",
"microkernel",
"modular-monolith",
"typescript"
],
"homepage": "https://github.com/hesprs/synthkernel",
"bugs": {
"url": "https://github.com/hesprs/synthkernel/issues"
},
"license": "MIT",
"author": {
"name": "Hēsperus",
"email": "hesprs@outlook.com"
},
"repository": {
"type": "git",
"url": "git+https://github.com/hesprs/synthkernel.git"
},
"files": [
"./dist"
],
"type": "module",
"sideEffects": false,
"main": "./dist/index.js",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"publishConfig": {
"access": "public",
"provenance": true
},
"scripts": {
"build": "tsdown && oxfmt package.json",
"test": "vitest run",
"lint": "oxlint --fix --silent && oxfmt",
"check": "oxlint --type-check --format agent && oxfmt --check"
},
"devDependencies": {
"@types/node": "^25.9.1",
"oxfmt": "^0.52.0",
"oxlint": "^1.67.0",
"oxlint-tsgolint": "^0.23.0",
"tsdown": "^0.22.1",
"tslab": "^1.0.22",
"typescript": "^6.0.3",
"vitest": "^4.1.7"
},
"devEngines": {
"packageManager": {
"name": "pnpm",
"version": "^11.2.2",
"onFail": "download"
}
}
}