aiapps 0.0.1 → 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/LICENSE ADDED
@@ -0,0 +1,48 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2026 Taias
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
22
+
23
+ ---
24
+
25
+ Portions of this software are derived from Skybridge
26
+ (https://github.com/alpic-ai/skybridge):
27
+
28
+ MIT License
29
+
30
+ Copyright (c) 2025 Alpic
31
+
32
+ Permission is hereby granted, free of charge, to any person obtaining a copy
33
+ of this software and associated documentation files (the "Software"), to deal
34
+ in the Software without restriction, including without limitation the rights
35
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
36
+ copies of the Software, and to permit persons to whom the Software is
37
+ furnished to do so, subject to the following conditions:
38
+
39
+ The above copyright notice and this permission notice shall be included in all
40
+ copies or substantial portions of the Software.
41
+
42
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
43
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
44
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
45
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
46
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
47
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
48
+ SOFTWARE.
@@ -0,0 +1 @@
1
+ export * from "@taias/aiapps/server";
package/dist/server.js ADDED
@@ -0,0 +1 @@
1
+ export * from "@taias/aiapps/server";
package/dist/web.d.ts ADDED
@@ -0,0 +1 @@
1
+ export * from "@taias/aiapps/web";
package/dist/web.js ADDED
@@ -0,0 +1 @@
1
+ export * from "@taias/aiapps/web";
package/package.json CHANGED
@@ -1,8 +1,44 @@
1
1
  {
2
2
  "name": "aiapps",
3
- "version": "0.0.1",
4
- "description": "Package name reservation - coming soon",
5
- "main": "index.js",
6
- "author": "Geffen Posner",
7
- "license": "MIT"
8
- }
3
+ "version": "0.1.1",
4
+ "description": "AI Apps is a framework for building ChatGPT and MCP Apps",
5
+ "repository": {
6
+ "type": "git",
7
+ "url": "https://github.com/taias-xyz/aiapps.git"
8
+ },
9
+ "type": "module",
10
+ "files": [
11
+ "dist",
12
+ "tsconfig.base.json"
13
+ ],
14
+ "exports": {
15
+ "./tsconfig": "./tsconfig.base.json",
16
+ "./tsconfig.json": "./tsconfig.base.json",
17
+ "./server": {
18
+ "types": "./dist/server.d.ts",
19
+ "default": "./dist/server.js"
20
+ },
21
+ "./web": {
22
+ "types": "./dist/web.d.ts",
23
+ "default": "./dist/web.js"
24
+ }
25
+ },
26
+ "keywords": [
27
+ "chatgpt",
28
+ "app",
29
+ "ai",
30
+ "aiapps",
31
+ "mcp"
32
+ ],
33
+ "author": "Taias",
34
+ "license": "MIT",
35
+ "dependencies": {
36
+ "@taias/aiapps": "0.1.1"
37
+ },
38
+ "devDependencies": {
39
+ "typescript": "^5.9.3"
40
+ },
41
+ "scripts": {
42
+ "build": "tsc && cp ../core/tsconfig.base.json ./tsconfig.base.json"
43
+ }
44
+ }
@@ -0,0 +1,28 @@
1
+ {
2
+ "compilerOptions": {
3
+ // Module resolution options
4
+ "module": "NodeNext",
5
+ "esModuleInterop": true,
6
+ "verbatimModuleSyntax": true,
7
+
8
+ // Output options
9
+ "noEmit": false,
10
+ "incremental": true,
11
+ "sourceMap": true,
12
+
13
+ // Language and environment options
14
+ "target": "ES2022",
15
+ "lib": ["ES2022", "DOM", "DOM.Iterable"],
16
+ "jsx": "react-jsx",
17
+
18
+ // Strictness and checking options
19
+ "strict": true,
20
+ "skipLibCheck": true,
21
+ "forceConsistentCasingInFileNames": true,
22
+
23
+ // Code quality & diagnostics
24
+ "noUnusedLocals": true,
25
+ "noUnusedParameters": true,
26
+ "noFallthroughCasesInSwitch": true
27
+ }
28
+ }
package/index.js DELETED
@@ -1 +0,0 @@
1
- module.exports = {};