mythik-react 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.
Files changed (2) hide show
  1. package/README.md +1 -1
  2. package/package.json +58 -59
package/README.md CHANGED
@@ -80,4 +80,4 @@ Apache-2.0.
80
80
 
81
81
  ## Status
82
82
 
83
- v0.1.0 public release. React Native work remains a repository preview track and is not part of the initial npm publish surface.
83
+ v0.1.1 public release. React Native work remains a repository preview track and is not part of the initial npm publish surface.
package/package.json CHANGED
@@ -1,59 +1,58 @@
1
- {
2
- "name": "mythik-react",
3
- "version": "0.1.0",
4
- "description": "React runtime and primitives for rendering Mythik JSON specs as applications.",
5
- "license": "Apache-2.0",
6
- "type": "module",
7
- "main": "dist/index.js",
8
- "types": "dist/index.d.ts",
9
- "keywords": [
10
- "mythik",
11
- "react",
12
- "json",
13
- "spec-driven",
14
- "application-framework",
15
- "low-code",
16
- "ai"
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/react"
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
- "scripts": {
40
- "build": "node ../../node_modules/typescript/bin/tsc",
41
- "typecheck": "node ../../node_modules/typescript/bin/tsc --noEmit",
42
- "prepack": "pnpm build"
43
- },
44
- "dependencies": {
45
- "mythik": "workspace:*",
46
- "motion": "^12.38.0"
47
- },
48
- "devDependencies": {
49
- "@testing-library/jest-dom": "^6.0.0",
50
- "@testing-library/react": "^16.0.0",
51
- "@types/node": "^25.5.2",
52
- "@types/react": "^19.0.0",
53
- "typescript": "^5.7.0"
54
- },
55
- "peerDependencies": {
56
- "react": "^18.0.0 || ^19.0.0",
57
- "react-dom": "^18.0.0 || ^19.0.0"
58
- }
59
- }
1
+ {
2
+ "name": "mythik-react",
3
+ "version": "0.1.1",
4
+ "description": "React runtime and primitives for rendering Mythik JSON specs as applications.",
5
+ "license": "Apache-2.0",
6
+ "type": "module",
7
+ "main": "dist/index.js",
8
+ "types": "dist/index.d.ts",
9
+ "keywords": [
10
+ "mythik",
11
+ "react",
12
+ "json",
13
+ "spec-driven",
14
+ "application-framework",
15
+ "low-code",
16
+ "ai"
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/react"
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
+ "motion": "^12.38.0",
41
+ "mythik": "0.1.1"
42
+ },
43
+ "devDependencies": {
44
+ "@testing-library/jest-dom": "^6.0.0",
45
+ "@testing-library/react": "^16.0.0",
46
+ "@types/node": "^25.5.2",
47
+ "@types/react": "^19.0.0",
48
+ "typescript": "^5.7.0"
49
+ },
50
+ "peerDependencies": {
51
+ "react": "^18.0.0 || ^19.0.0",
52
+ "react-dom": "^18.0.0 || ^19.0.0"
53
+ },
54
+ "scripts": {
55
+ "build": "node ../../node_modules/typescript/bin/tsc",
56
+ "typecheck": "node ../../node_modules/typescript/bin/tsc --noEmit"
57
+ }
58
+ }