@moku-labs/core 0.1.0-alpha.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +21 -0
- package/README.md +315 -0
- package/dist/index.cjs +715 -0
- package/dist/index.d.cts +900 -0
- package/dist/index.d.mts +900 -0
- package/dist/index.mjs +713 -0
- package/package.json +85 -0
package/package.json
ADDED
|
@@ -0,0 +1,85 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@moku-labs/core",
|
|
3
|
+
"version": "0.1.0-alpha.0",
|
|
4
|
+
"description": "Micro-kernel plugin framework for LLMs (TypeScript)",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"license": "MIT",
|
|
7
|
+
"author": "Alex Kucherenko",
|
|
8
|
+
"repository": {
|
|
9
|
+
"type": "git",
|
|
10
|
+
"url": "git+https://github.com/moku-labs/core.git"
|
|
11
|
+
},
|
|
12
|
+
"bugs": {
|
|
13
|
+
"url": "https://github.com/moku-labs/core/issues"
|
|
14
|
+
},
|
|
15
|
+
"homepage": "https://github.com/moku-labs/core#readme",
|
|
16
|
+
"publishConfig": {
|
|
17
|
+
"access": "public",
|
|
18
|
+
"registry": "https://registry.npmjs.org/"
|
|
19
|
+
},
|
|
20
|
+
"engines": {
|
|
21
|
+
"node": ">=22.0.0",
|
|
22
|
+
"bun": ">=1.3.8"
|
|
23
|
+
},
|
|
24
|
+
"keywords": [
|
|
25
|
+
"plugin",
|
|
26
|
+
"framework",
|
|
27
|
+
"micro-kernel",
|
|
28
|
+
"typescript",
|
|
29
|
+
"lifecycle",
|
|
30
|
+
"event-bus",
|
|
31
|
+
"type-safe"
|
|
32
|
+
],
|
|
33
|
+
"exports": {
|
|
34
|
+
".": {
|
|
35
|
+
"import": {
|
|
36
|
+
"types": "./dist/index.d.mts",
|
|
37
|
+
"default": "./dist/index.mjs"
|
|
38
|
+
},
|
|
39
|
+
"require": {
|
|
40
|
+
"types": "./dist/index.d.cts",
|
|
41
|
+
"default": "./dist/index.cjs"
|
|
42
|
+
}
|
|
43
|
+
}
|
|
44
|
+
},
|
|
45
|
+
"main": "./dist/index.cjs",
|
|
46
|
+
"module": "./dist/index.mjs",
|
|
47
|
+
"types": "./dist/index.d.mts",
|
|
48
|
+
"scripts": {
|
|
49
|
+
"build": "tsdown",
|
|
50
|
+
"validate": "publint && attw --pack . --profile node16",
|
|
51
|
+
"lint": "biome check . && eslint .",
|
|
52
|
+
"lint:fix": "biome check --write . && eslint --fix .",
|
|
53
|
+
"format": "biome format --write .",
|
|
54
|
+
"test": "vitest run",
|
|
55
|
+
"test:unit": "vitest run --project unit",
|
|
56
|
+
"test:integration": "vitest run --project integration",
|
|
57
|
+
"test:sandbox": "vitest run --project sandbox",
|
|
58
|
+
"test:coverage": "vitest run --project unit --project integration --coverage"
|
|
59
|
+
},
|
|
60
|
+
"files": [
|
|
61
|
+
"dist",
|
|
62
|
+
"LICENSE",
|
|
63
|
+
"README.md"
|
|
64
|
+
],
|
|
65
|
+
"devDependencies": {
|
|
66
|
+
"@arethetypeswrong/cli": "0.18.2",
|
|
67
|
+
"@arethetypeswrong/core": "0.18.2",
|
|
68
|
+
"@biomejs/biome": "2.4.2",
|
|
69
|
+
"@types/bun": "1.3.9",
|
|
70
|
+
"@vitest/coverage-istanbul": "4.0.18",
|
|
71
|
+
"eslint": "9",
|
|
72
|
+
"eslint-config-biome": "2.1.3",
|
|
73
|
+
"eslint-plugin-jsdoc": "62.6.0",
|
|
74
|
+
"eslint-plugin-sonarjs": "4.0.0",
|
|
75
|
+
"eslint-plugin-unicorn": "63.0.0",
|
|
76
|
+
"globals": "17.3.0",
|
|
77
|
+
"jiti": "2.6.1",
|
|
78
|
+
"lefthook": "2.1.1",
|
|
79
|
+
"publint": "0.3.17",
|
|
80
|
+
"tsdown": "0.20.3",
|
|
81
|
+
"typescript": "5.9.3",
|
|
82
|
+
"typescript-eslint": "8.56.0",
|
|
83
|
+
"vitest": "4.0.18"
|
|
84
|
+
}
|
|
85
|
+
}
|