kooby 1.0.0
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 +429 -0
- package/dist/cjs/index.js +883 -0
- package/dist/esm/index.js +881 -0
- package/package.json +71 -0
package/package.json
ADDED
|
@@ -0,0 +1,71 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "kooby",
|
|
3
|
+
"version": "1.0.0",
|
|
4
|
+
"description": "",
|
|
5
|
+
"main": "dist/cjs/index.js",
|
|
6
|
+
"module": "dist/esm/index.js",
|
|
7
|
+
"type": "module",
|
|
8
|
+
"files": [
|
|
9
|
+
"dist/"
|
|
10
|
+
],
|
|
11
|
+
"exports": {
|
|
12
|
+
".": {
|
|
13
|
+
"import": "./dist/esm/index.js",
|
|
14
|
+
"require": "./dist/cjs/index.js"
|
|
15
|
+
},
|
|
16
|
+
"./package.json": "./package.json"
|
|
17
|
+
},
|
|
18
|
+
"scripts": {
|
|
19
|
+
"vite": "vite",
|
|
20
|
+
"serve:local": "nodemon",
|
|
21
|
+
"start:dev": "LOG_PRETTY=true concurrently --raw \"npm run serve:local\" \"npm run vite\"",
|
|
22
|
+
"build": "rm -rf dist && rollup --config",
|
|
23
|
+
"visualize": "VISUALIZE=true npm run build",
|
|
24
|
+
"version": "npm run build",
|
|
25
|
+
"prepare": "npm run build"
|
|
26
|
+
},
|
|
27
|
+
"keywords": [],
|
|
28
|
+
"author": "",
|
|
29
|
+
"license": "ISC",
|
|
30
|
+
"dependencies": {
|
|
31
|
+
"markdown-to-jsx": "^7.7.4"
|
|
32
|
+
},
|
|
33
|
+
"devDependencies": {
|
|
34
|
+
"@babel/core": "^7.15.5",
|
|
35
|
+
"@babel/plugin-proposal-class-properties": "^7.4.0",
|
|
36
|
+
"@babel/preset-env": "^7.15.4",
|
|
37
|
+
"@babel/preset-react": "^7.0.0",
|
|
38
|
+
"@babel/traverse": "^7.23.2",
|
|
39
|
+
"@react-spectrum/s2": "^1.0.0",
|
|
40
|
+
"@rollup/plugin-babel": "^6.0.4",
|
|
41
|
+
"@rollup/plugin-commonjs": "^28.0.3",
|
|
42
|
+
"@rollup/plugin-node-resolve": "^16.0.1",
|
|
43
|
+
"@vitejs/plugin-react": "^4.3.4",
|
|
44
|
+
"chalk": "^5.4.1",
|
|
45
|
+
"concurrently": "^9.1.2",
|
|
46
|
+
"dotenv": "^17.3.1",
|
|
47
|
+
"express": "^4.21.2",
|
|
48
|
+
"informed": "^4.64.2",
|
|
49
|
+
"mermaid": "^11.5.0",
|
|
50
|
+
"nodemon": "^3.1.9",
|
|
51
|
+
"openai": "^4.86.1",
|
|
52
|
+
"qrcode": "^1.5.4",
|
|
53
|
+
"react": "^19.0.0",
|
|
54
|
+
"react-dom": "^19.0.0",
|
|
55
|
+
"react-router-dom": "^7.5.3",
|
|
56
|
+
"rollup": "^4.40.0",
|
|
57
|
+
"rollup-plugin-analyzer": "^4.0.0",
|
|
58
|
+
"rollup-plugin-postcss": "^4.0.2",
|
|
59
|
+
"rollup-plugin-visualizer": "^5.14.0",
|
|
60
|
+
"unplugin-parcel-macros": "^0.2.0",
|
|
61
|
+
"vite": "^5.4.14",
|
|
62
|
+
"ws": "^8.18.1"
|
|
63
|
+
},
|
|
64
|
+
"peerDependencies": {
|
|
65
|
+
"@react-spectrum/s2": "^1.0.0",
|
|
66
|
+
"react": "^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0"
|
|
67
|
+
},
|
|
68
|
+
"optionalDependencies": {
|
|
69
|
+
"react-dom": "^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0"
|
|
70
|
+
}
|
|
71
|
+
}
|