mythik-server 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 +1 -1
- package/package.json +62 -63
package/README.md
CHANGED
|
@@ -48,4 +48,4 @@ Apache-2.0.
|
|
|
48
48
|
|
|
49
49
|
## Status
|
|
50
50
|
|
|
51
|
-
v0.1.
|
|
51
|
+
v0.1.1 public release. Use with `mythik-cli contract` to cross-check frontend specs against backend endpoints before deployment.
|
package/package.json
CHANGED
|
@@ -1,63 +1,62 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "mythik-server",
|
|
3
|
-
"version": "0.1.
|
|
4
|
-
"description": "Declarative REST runtime for Mythik ApiSpec contracts, auth, RBAC, catalogs, and CRUD endpoints.",
|
|
5
|
-
"license": "Apache-2.0",
|
|
6
|
-
"type": "module",
|
|
7
|
-
"main": "dist/index.js",
|
|
8
|
-
"types": "dist/index.d.ts",
|
|
9
|
-
"keywords": [
|
|
10
|
-
"mythik",
|
|
11
|
-
"server",
|
|
12
|
-
"rest",
|
|
13
|
-
"api",
|
|
14
|
-
"json",
|
|
15
|
-
"rbac",
|
|
16
|
-
"crud"
|
|
17
|
-
],
|
|
18
|
-
"homepage": "https://mythik.dev",
|
|
19
|
-
"bugs": {
|
|
20
|
-
"url": "https://github.com/mldixdev/mythik/issues"
|
|
21
|
-
},
|
|
22
|
-
"repository": {
|
|
23
|
-
"type": "git",
|
|
24
|
-
"url": "git+https://github.com/mldixdev/mythik.git",
|
|
25
|
-
"directory": "packages/server"
|
|
26
|
-
},
|
|
27
|
-
"files": [
|
|
28
|
-
"dist",
|
|
29
|
-
"LICENSE",
|
|
30
|
-
"NOTICE"
|
|
31
|
-
],
|
|
32
|
-
"exports": {
|
|
33
|
-
".": {
|
|
34
|
-
"types": "./dist/index.d.ts",
|
|
35
|
-
"default": "./dist/index.js"
|
|
36
|
-
},
|
|
37
|
-
"./package.json": "./package.json"
|
|
38
|
-
},
|
|
39
|
-
"
|
|
40
|
-
"
|
|
41
|
-
"
|
|
42
|
-
"
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
"
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
"
|
|
49
|
-
"
|
|
50
|
-
"
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
"@types/
|
|
54
|
-
"
|
|
55
|
-
"
|
|
56
|
-
"
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
"
|
|
60
|
-
"
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"name": "mythik-server",
|
|
3
|
+
"version": "0.1.1",
|
|
4
|
+
"description": "Declarative REST runtime for Mythik ApiSpec contracts, auth, RBAC, catalogs, and CRUD endpoints.",
|
|
5
|
+
"license": "Apache-2.0",
|
|
6
|
+
"type": "module",
|
|
7
|
+
"main": "dist/index.js",
|
|
8
|
+
"types": "dist/index.d.ts",
|
|
9
|
+
"keywords": [
|
|
10
|
+
"mythik",
|
|
11
|
+
"server",
|
|
12
|
+
"rest",
|
|
13
|
+
"api",
|
|
14
|
+
"json",
|
|
15
|
+
"rbac",
|
|
16
|
+
"crud"
|
|
17
|
+
],
|
|
18
|
+
"homepage": "https://mythik.dev",
|
|
19
|
+
"bugs": {
|
|
20
|
+
"url": "https://github.com/mldixdev/mythik/issues"
|
|
21
|
+
},
|
|
22
|
+
"repository": {
|
|
23
|
+
"type": "git",
|
|
24
|
+
"url": "git+https://github.com/mldixdev/mythik.git",
|
|
25
|
+
"directory": "packages/server"
|
|
26
|
+
},
|
|
27
|
+
"files": [
|
|
28
|
+
"dist",
|
|
29
|
+
"LICENSE",
|
|
30
|
+
"NOTICE"
|
|
31
|
+
],
|
|
32
|
+
"exports": {
|
|
33
|
+
".": {
|
|
34
|
+
"types": "./dist/index.d.ts",
|
|
35
|
+
"default": "./dist/index.js"
|
|
36
|
+
},
|
|
37
|
+
"./package.json": "./package.json"
|
|
38
|
+
},
|
|
39
|
+
"dependencies": {
|
|
40
|
+
"bcryptjs": "^3.0.3",
|
|
41
|
+
"cors": "^2.8.5",
|
|
42
|
+
"express": "^4.21.2",
|
|
43
|
+
"jsonwebtoken": "^9.0.3",
|
|
44
|
+
"mssql": "^11.0.1",
|
|
45
|
+
"mythik": "0.1.1"
|
|
46
|
+
},
|
|
47
|
+
"devDependencies": {
|
|
48
|
+
"@types/bcryptjs": "^3.0.0",
|
|
49
|
+
"@types/cors": "^2.8.17",
|
|
50
|
+
"@types/express": "^4.17.21",
|
|
51
|
+
"@types/jsonwebtoken": "^9.0.10",
|
|
52
|
+
"@types/node": "^22.14.1",
|
|
53
|
+
"@types/supertest": "^6.0.2",
|
|
54
|
+
"supertest": "^7.1.0",
|
|
55
|
+
"typescript": "^5.8.3",
|
|
56
|
+
"vitest": "^3.2.4"
|
|
57
|
+
},
|
|
58
|
+
"scripts": {
|
|
59
|
+
"build": "node ../../node_modules/typescript/bin/tsc",
|
|
60
|
+
"typecheck": "node ../../node_modules/typescript/bin/tsc --noEmit"
|
|
61
|
+
}
|
|
62
|
+
}
|