skybridge 0.0.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 +3 -0
  2. package/package.json +20 -0
package/README.md ADDED
@@ -0,0 +1,3 @@
1
+ # Skybridge
2
+
3
+ Skybridge is a framework for building ChatGPT apps
package/package.json ADDED
@@ -0,0 +1,20 @@
1
+ {
2
+ "name": "skybridge",
3
+ "version": "0.0.1",
4
+ "description": "Skybridge is a framework for building ChatGPT apps",
5
+ "main": "index.js",
6
+ "keywords": [
7
+ "chatgpt",
8
+ "app",
9
+ "ai",
10
+ "skybridge"
11
+ ],
12
+ "author": "Frédéric Barthelet",
13
+ "license": "ISC",
14
+ "devDependencies": {
15
+ "typescript": "^5.9.3"
16
+ },
17
+ "scripts": {
18
+ "test": "echo \"Error: no test specified\" && exit 1"
19
+ }
20
+ }