@apps-in-toss/web-framework 2.6.1 → 3.0.0-beta.0c56009
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/dist/cli.js +306 -0
- package/dist/config.cjs +52 -0
- package/dist/config.d.cts +54 -0
- package/dist/config.d.ts +54 -0
- package/dist/config.js +27 -0
- package/dist/core.cjs +1511 -0
- package/dist/core.d.cts +906 -0
- package/dist/core.d.ts +906 -0
- package/dist/core.js +1452 -0
- package/package.json +42 -91
- package/LICENSE +0 -674
- package/README.md +0 -43
- package/ait.js +0 -4
- package/bin.js +0 -4
- package/config.d.ts +0 -1
- package/dist/cli/chunk-BAH3W7VD.js +0 -61
- package/dist/cli/index.js +0 -15558
- package/dist/cli/lib-O2ZDIQPQ.js +0 -1007
- package/dist/config/index.d.ts +0 -85
- package/dist/config/index.js +0 -599
- package/dist/prebuilt/dev.android.rn84.js +0 -214517
- package/dist/prebuilt/dev.ios.rn84.js +0 -213945
- package/dist/prebuilt/prod.android.rn72.js +0 -49390
- package/dist/prebuilt/prod.android.rn84.js +0 -48405
- package/dist/prebuilt/prod.ios.rn72.js +0 -49399
- package/dist/prebuilt/prod.ios.rn84.js +0 -48414
- package/dist-web/index.d.ts +0 -2
- package/dist-web/index.js +0 -2
package/package.json
CHANGED
|
@@ -1,105 +1,56 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@apps-in-toss/web-framework",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "
|
|
5
|
-
"description": "Web Framework for Apps In Toss",
|
|
6
|
-
"scripts": {
|
|
7
|
-
"typecheck": "tsc --noEmit",
|
|
8
|
-
"lint": "eslint .",
|
|
9
|
-
"build": "tsup",
|
|
10
|
-
"test": "vitest --no-watch",
|
|
11
|
-
"test:no-parallel": "vitest --no-watch --config=vitest.no-parallel.config.mts"
|
|
12
|
-
},
|
|
13
|
-
"main": "./dist-web/index.js",
|
|
14
|
-
"types": "./dist-web/index.d.ts",
|
|
4
|
+
"version": "3.0.0-beta.0c56009",
|
|
15
5
|
"exports": {
|
|
16
6
|
".": {
|
|
17
|
-
"
|
|
18
|
-
|
|
7
|
+
"import": {
|
|
8
|
+
"types": "./dist/core.d.ts",
|
|
9
|
+
"default": "./dist/core.js"
|
|
10
|
+
},
|
|
11
|
+
"require": {
|
|
12
|
+
"types": "./dist/core.d.cts",
|
|
13
|
+
"default": "./dist/core.cjs"
|
|
14
|
+
}
|
|
19
15
|
},
|
|
20
16
|
"./config": {
|
|
21
|
-
"
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
"./prebuilt/prod/ios/rn84": "./dist/prebuilt/prod.ios.rn84.js",
|
|
31
|
-
"./prebuilt/prod/android/rn84": "./dist/prebuilt/prod.android.rn84.js",
|
|
32
|
-
"./prebuilt/prod/ios/rn72": "./dist/prebuilt/prod.ios.rn72.js",
|
|
33
|
-
"./prebuilt/prod/android/rn72": "./dist/prebuilt/prod.android.rn72.js",
|
|
34
|
-
"./package.json": "./package.json"
|
|
35
|
-
},
|
|
36
|
-
"bin": {
|
|
37
|
-
"ait": "./ait.js",
|
|
38
|
-
"granite": "./bin.js"
|
|
17
|
+
"import": {
|
|
18
|
+
"types": "./dist/config.d.ts",
|
|
19
|
+
"default": "./dist/config.js"
|
|
20
|
+
},
|
|
21
|
+
"require": {
|
|
22
|
+
"types": "./dist/config.d.cts",
|
|
23
|
+
"default": "./dist/config.cjs"
|
|
24
|
+
}
|
|
25
|
+
}
|
|
39
26
|
},
|
|
40
27
|
"files": [
|
|
41
|
-
"dist"
|
|
42
|
-
"hermesc",
|
|
43
|
-
"ait.js",
|
|
44
|
-
"bin.js",
|
|
45
|
-
"dist-web",
|
|
46
|
-
"config.d.ts"
|
|
28
|
+
"dist"
|
|
47
29
|
],
|
|
48
|
-
"
|
|
49
|
-
"
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
"
|
|
53
|
-
"
|
|
54
|
-
"@hono/node-server": "^1.13.8",
|
|
55
|
-
"@hono/node-ws": "^1.1.3",
|
|
56
|
-
"@react-native/babel-preset": "0.84.0",
|
|
57
|
-
"@ryoppippi/unplugin-typia": "^2.6.5",
|
|
58
|
-
"@toss/tds-react-native": "2.0.3",
|
|
59
|
-
"@types/babel__core": "^7.20.5",
|
|
60
|
-
"@types/babel__traverse": "^7",
|
|
61
|
-
"@types/debug": "^4",
|
|
62
|
-
"@types/kill-port": "2.0.1",
|
|
63
|
-
"@types/node": "^22.10.2",
|
|
64
|
-
"@types/react": "19.2.3",
|
|
65
|
-
"@types/yauzl": "^2.10.3",
|
|
66
|
-
"brick-module": "0.5.2",
|
|
67
|
-
"clipanion": "^4.0.0-rc.4",
|
|
68
|
-
"cosmiconfig": "^9.0.0",
|
|
69
|
-
"cosmiconfig-typescript-loader": "^5.1.0",
|
|
70
|
-
"es-toolkit": "^1.32.0",
|
|
71
|
-
"eslint": "^9.7.0",
|
|
72
|
-
"execa": "9.3.0",
|
|
73
|
-
"find-up-simple": "^1.0.1",
|
|
74
|
-
"hono": "^4.7.4",
|
|
75
|
-
"kill-port": "2.0.1",
|
|
76
|
-
"picocolors": "^1.1.1",
|
|
77
|
-
"react": "19.2.3",
|
|
78
|
-
"react-native": "0.84.0",
|
|
79
|
-
"tsup": "^8.3.5",
|
|
80
|
-
"typescript": "5.8.3",
|
|
81
|
-
"typia": "^9.3.0",
|
|
82
|
-
"uuidv7": "^1.0.2",
|
|
83
|
-
"vitest": "^3.0.5",
|
|
84
|
-
"wait-port": "^1.1.0",
|
|
85
|
-
"workspace-tools": "^0.38.2",
|
|
86
|
-
"zod": "3.24.4"
|
|
30
|
+
"bin": {
|
|
31
|
+
"ait": "./dist/cli.js"
|
|
32
|
+
},
|
|
33
|
+
"scripts": {
|
|
34
|
+
"build": "tsup",
|
|
35
|
+
"typecheck": "tsc --noEmit"
|
|
87
36
|
},
|
|
88
37
|
"dependencies": {
|
|
89
|
-
"@apps-in-toss/
|
|
90
|
-
"@apps-in-toss/
|
|
91
|
-
"@
|
|
92
|
-
"
|
|
93
|
-
"
|
|
94
|
-
"
|
|
95
|
-
"
|
|
96
|
-
"
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
"@
|
|
100
|
-
"@
|
|
101
|
-
"
|
|
102
|
-
"
|
|
103
|
-
"
|
|
38
|
+
"@apps-in-toss/ait-format": "^1.0.0",
|
|
39
|
+
"@apps-in-toss/webview-bridge": "^3.0.0-beta.0c56009",
|
|
40
|
+
"@clack/prompts": "^1.3.0",
|
|
41
|
+
"clipanion": "^4.0.0-rc.4",
|
|
42
|
+
"cosmiconfig": "^9.0.1",
|
|
43
|
+
"cosmiconfig-typescript-loader": "^6.3.0",
|
|
44
|
+
"jscodeshift": "^17.1.2",
|
|
45
|
+
"uuidv7": "^1.2.1"
|
|
46
|
+
},
|
|
47
|
+
"devDependencies": {
|
|
48
|
+
"@types/jscodeshift": "^0.12.0",
|
|
49
|
+
"@types/node": "^22.0.0",
|
|
50
|
+
"execa": "^9.6.1",
|
|
51
|
+
"ts-morph": "^26.0.0",
|
|
52
|
+
"tsup": "^8.4.0",
|
|
53
|
+
"typescript": "5.8.3",
|
|
54
|
+
"vitest": "^4.1.5"
|
|
104
55
|
}
|
|
105
56
|
}
|