@guidekit/core 0.1.0-beta.1 → 0.1.0-beta.2
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/dist/index.cjs +1639 -582
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +571 -30
- package/dist/index.d.ts +571 -30
- package/dist/index.js +1637 -583
- package/dist/index.js.map +1 -1
- package/package.json +37 -14
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@guidekit/core",
|
|
3
|
-
"version": "0.1.0-beta.
|
|
3
|
+
"version": "0.1.0-beta.2",
|
|
4
4
|
"description": "Core engine for GuideKit SDK — DOM intelligence, LLM orchestration, context management",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/index.cjs",
|
|
@@ -15,20 +15,11 @@
|
|
|
15
15
|
},
|
|
16
16
|
"files": [
|
|
17
17
|
"dist",
|
|
18
|
-
"
|
|
18
|
+
"LICENSE",
|
|
19
19
|
"README.md"
|
|
20
20
|
],
|
|
21
|
-
"scripts": {
|
|
22
|
-
"build": "tsup",
|
|
23
|
-
"dev": "tsup --watch",
|
|
24
|
-
"test": "vitest run --config ../../vitest.config.ts",
|
|
25
|
-
"test:unit": "vitest run --config ../../vitest.config.ts",
|
|
26
|
-
"test:watch": "vitest --config ../../vitest.config.ts",
|
|
27
|
-
"typecheck": "tsc --noEmit",
|
|
28
|
-
"clean": "rm -rf dist"
|
|
29
|
-
},
|
|
30
21
|
"peerDependencies": {
|
|
31
|
-
"@guidekit/vad": "
|
|
22
|
+
"@guidekit/vad": "^0.1.0-beta.2"
|
|
32
23
|
},
|
|
33
24
|
"peerDependenciesMeta": {
|
|
34
25
|
"@guidekit/vad": {
|
|
@@ -41,5 +32,37 @@
|
|
|
41
32
|
"vitest": "^3.0.0"
|
|
42
33
|
},
|
|
43
34
|
"sideEffects": false,
|
|
44
|
-
"license": "MIT"
|
|
45
|
-
|
|
35
|
+
"license": "MIT",
|
|
36
|
+
"author": "Riazul Islam",
|
|
37
|
+
"keywords": [
|
|
38
|
+
"guidekit",
|
|
39
|
+
"sdk",
|
|
40
|
+
"ai",
|
|
41
|
+
"llm",
|
|
42
|
+
"dom",
|
|
43
|
+
"orchestration",
|
|
44
|
+
"voice",
|
|
45
|
+
"assistant"
|
|
46
|
+
],
|
|
47
|
+
"engines": {
|
|
48
|
+
"node": ">=18"
|
|
49
|
+
},
|
|
50
|
+
"repository": {
|
|
51
|
+
"type": "git",
|
|
52
|
+
"url": "https://github.com/riaz37/guidekit.git",
|
|
53
|
+
"directory": "packages/core"
|
|
54
|
+
},
|
|
55
|
+
"homepage": "https://github.com/riaz37/guidekit#readme",
|
|
56
|
+
"bugs": {
|
|
57
|
+
"url": "https://github.com/riaz37/guidekit/issues"
|
|
58
|
+
},
|
|
59
|
+
"scripts": {
|
|
60
|
+
"build": "tsup",
|
|
61
|
+
"dev": "tsup --watch",
|
|
62
|
+
"test": "vitest run --config ../../vitest.config.ts",
|
|
63
|
+
"test:unit": "vitest run --config ../../vitest.config.ts",
|
|
64
|
+
"test:watch": "vitest --config ../../vitest.config.ts",
|
|
65
|
+
"typecheck": "tsc --noEmit",
|
|
66
|
+
"clean": "rm -rf dist"
|
|
67
|
+
}
|
|
68
|
+
}
|