mythik 0.1.0 → 0.1.1
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/README.md
CHANGED
|
@@ -7,7 +7,7 @@ sources: [docs/consumer/ai-context.md, docs/consumer/WHERE-TO-LOOK.md]
|
|
|
7
7
|
|
|
8
8
|
# Public package names
|
|
9
9
|
|
|
10
|
-
Mythik publishes unscoped npm packages. Do not generate scoped package imports for
|
|
10
|
+
Mythik publishes unscoped npm packages. Do not generate scoped package imports for public npm consumers.
|
|
11
11
|
|
|
12
12
|
| Public package | Use |
|
|
13
13
|
|---|---|
|
package/package.json
CHANGED
|
@@ -1,60 +1,59 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "mythik",
|
|
3
|
-
"version": "0.1.
|
|
4
|
-
"description": "Spec-driven core runtime for validated JSON applications, APIs, editor sessions, state, actions, validation, and versioning.",
|
|
5
|
-
"license": "Apache-2.0",
|
|
6
|
-
"type": "module",
|
|
7
|
-
"sideEffects": false,
|
|
8
|
-
"main": "./dist/index.js",
|
|
9
|
-
"types": "./dist/index.d.ts",
|
|
10
|
-
"keywords": [
|
|
11
|
-
"mythik",
|
|
12
|
-
"spec-driven",
|
|
13
|
-
"json",
|
|
14
|
-
"application-framework",
|
|
15
|
-
"ai",
|
|
16
|
-
"validation",
|
|
17
|
-
"runtime"
|
|
18
|
-
],
|
|
19
|
-
"homepage": "https://mythik.dev",
|
|
20
|
-
"bugs": {
|
|
21
|
-
"url": "https://github.com/mldixdev/mythik/issues"
|
|
22
|
-
},
|
|
23
|
-
"repository": {
|
|
24
|
-
"type": "git",
|
|
25
|
-
"url": "git+https://github.com/mldixdev/mythik.git",
|
|
26
|
-
"directory": "packages/core"
|
|
27
|
-
},
|
|
1
|
+
{
|
|
2
|
+
"name": "mythik",
|
|
3
|
+
"version": "0.1.1",
|
|
4
|
+
"description": "Spec-driven core runtime for validated JSON applications, APIs, editor sessions, state, actions, validation, and versioning.",
|
|
5
|
+
"license": "Apache-2.0",
|
|
6
|
+
"type": "module",
|
|
7
|
+
"sideEffects": false,
|
|
8
|
+
"main": "./dist/index.js",
|
|
9
|
+
"types": "./dist/index.d.ts",
|
|
10
|
+
"keywords": [
|
|
11
|
+
"mythik",
|
|
12
|
+
"spec-driven",
|
|
13
|
+
"json",
|
|
14
|
+
"application-framework",
|
|
15
|
+
"ai",
|
|
16
|
+
"validation",
|
|
17
|
+
"runtime"
|
|
18
|
+
],
|
|
19
|
+
"homepage": "https://mythik.dev",
|
|
20
|
+
"bugs": {
|
|
21
|
+
"url": "https://github.com/mldixdev/mythik/issues"
|
|
22
|
+
},
|
|
23
|
+
"repository": {
|
|
24
|
+
"type": "git",
|
|
25
|
+
"url": "git+https://github.com/mldixdev/mythik.git",
|
|
26
|
+
"directory": "packages/core"
|
|
27
|
+
},
|
|
28
28
|
"files": [
|
|
29
29
|
"dist",
|
|
30
30
|
"docs",
|
|
31
31
|
"LICENSE",
|
|
32
32
|
"NOTICE"
|
|
33
33
|
],
|
|
34
|
+
"exports": {
|
|
35
|
+
".": {
|
|
36
|
+
"types": "./dist/index.d.ts",
|
|
37
|
+
"default": "./dist/index.js"
|
|
38
|
+
},
|
|
39
|
+
"./server": {
|
|
40
|
+
"types": "./dist/server.d.ts",
|
|
41
|
+
"default": "./dist/server.js"
|
|
42
|
+
},
|
|
43
|
+
"./package.json": "./package.json"
|
|
44
|
+
},
|
|
45
|
+
"dependencies": {
|
|
46
|
+
"isomorphic-dompurify": "^3.9.0",
|
|
47
|
+
"mssql": "^12.2.1",
|
|
48
|
+
"zustand": "^5.0.0"
|
|
49
|
+
},
|
|
50
|
+
"devDependencies": {
|
|
51
|
+
"@types/node": "^25.5.2",
|
|
52
|
+
"es-module-lexer": "^2.0.0",
|
|
53
|
+
"typescript": "^5.7.0"
|
|
54
|
+
},
|
|
34
55
|
"scripts": {
|
|
35
56
|
"build": "node ../../node_modules/typescript/bin/tsc",
|
|
36
|
-
"typecheck": "node ../../node_modules/typescript/bin/tsc --noEmit"
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
"exports": {
|
|
40
|
-
".": {
|
|
41
|
-
"types": "./dist/index.d.ts",
|
|
42
|
-
"default": "./dist/index.js"
|
|
43
|
-
},
|
|
44
|
-
"./server": {
|
|
45
|
-
"types": "./dist/server.d.ts",
|
|
46
|
-
"default": "./dist/server.js"
|
|
47
|
-
},
|
|
48
|
-
"./package.json": "./package.json"
|
|
49
|
-
},
|
|
50
|
-
"dependencies": {
|
|
51
|
-
"isomorphic-dompurify": "^3.9.0",
|
|
52
|
-
"mssql": "^12.2.1",
|
|
53
|
-
"zustand": "^5.0.0"
|
|
54
|
-
},
|
|
55
|
-
"devDependencies": {
|
|
56
|
-
"@types/node": "^25.5.2",
|
|
57
|
-
"es-module-lexer": "^2.0.0",
|
|
58
|
-
"typescript": "^5.7.0"
|
|
59
|
-
}
|
|
60
|
-
}
|
|
57
|
+
"typecheck": "node ../../node_modules/typescript/bin/tsc --noEmit"
|
|
58
|
+
}
|
|
59
|
+
}
|