@dotdo/do 0.1.2 → 0.1.3
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/package.json +21 -16
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@dotdo/do",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.3",
|
|
4
4
|
"description": "Digital Object - Every business entity IS a Durable Object. Unified edge-native platform with CRUD APIs, SDK, AI, payments, and more.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/index.js",
|
|
@@ -68,6 +68,20 @@
|
|
|
68
68
|
"import": "./dist/ai/index.js"
|
|
69
69
|
}
|
|
70
70
|
},
|
|
71
|
+
"scripts": {
|
|
72
|
+
"build": "tsc -p tsconfig.build.json",
|
|
73
|
+
"check": "tsc --noEmit",
|
|
74
|
+
"clean": "rm -rf dist",
|
|
75
|
+
"prepublishOnly": "pnpm run clean && pnpm run build",
|
|
76
|
+
"test": "vitest",
|
|
77
|
+
"test:run": "vitest run",
|
|
78
|
+
"test:coverage": "vitest run --coverage",
|
|
79
|
+
"test:workers": "vitest run --config vitest.workers.config.ts",
|
|
80
|
+
"test:e2e": "vitest run --config vitest.e2e.config.ts",
|
|
81
|
+
"dev": "wrangler dev --config proxy/wrangler.jsonc",
|
|
82
|
+
"deploy": "wrangler deploy --config proxy/wrangler.jsonc",
|
|
83
|
+
"deploy:dry-run": "wrangler deploy --config proxy/wrangler.jsonc --dry-run"
|
|
84
|
+
},
|
|
71
85
|
"keywords": [
|
|
72
86
|
"durable-objects",
|
|
73
87
|
"cloudflare",
|
|
@@ -104,6 +118,7 @@
|
|
|
104
118
|
],
|
|
105
119
|
"sideEffects": false,
|
|
106
120
|
"dependencies": {
|
|
121
|
+
"@dotdo/apis": "^0.1.0",
|
|
107
122
|
"ai-database": "^2.1.3",
|
|
108
123
|
"ai-evaluate": "^2.1.5",
|
|
109
124
|
"ai-functions": "^2.1.3",
|
|
@@ -115,10 +130,12 @@
|
|
|
115
130
|
"hono": "^4.7.0",
|
|
116
131
|
"language-models": "^2.1.3",
|
|
117
132
|
"mdxui": "^2.1.1",
|
|
118
|
-
"oauth.do": "^0.2.0",
|
|
119
133
|
"rpc.do": "^0.2.0",
|
|
120
134
|
"zod": "^4.3.6"
|
|
121
135
|
},
|
|
136
|
+
"optionalDependencies": {
|
|
137
|
+
"oauth.do": "^0.2.0"
|
|
138
|
+
},
|
|
122
139
|
"devDependencies": {
|
|
123
140
|
"@cloudflare/vitest-pool-workers": "^0.12.6",
|
|
124
141
|
"@cloudflare/workers-types": "^4.20241230.0",
|
|
@@ -130,24 +147,12 @@
|
|
|
130
147
|
"peerDependencies": {
|
|
131
148
|
"@cloudflare/workers-types": "^4.0.0"
|
|
132
149
|
},
|
|
150
|
+
"packageManager": "pnpm@9.15.4",
|
|
133
151
|
"prettier": {
|
|
134
152
|
"semi": false,
|
|
135
153
|
"singleQuote": true,
|
|
136
154
|
"jsxSingleQuote": true,
|
|
137
155
|
"tabWidth": 2,
|
|
138
156
|
"printWidth": 160
|
|
139
|
-
},
|
|
140
|
-
"scripts": {
|
|
141
|
-
"build": "tsc -p tsconfig.build.json",
|
|
142
|
-
"check": "tsc --noEmit",
|
|
143
|
-
"clean": "rm -rf dist",
|
|
144
|
-
"test": "vitest",
|
|
145
|
-
"test:run": "vitest run",
|
|
146
|
-
"test:coverage": "vitest run --coverage",
|
|
147
|
-
"test:workers": "vitest run --config vitest.workers.config.ts",
|
|
148
|
-
"test:e2e": "vitest run --config vitest.e2e.config.ts",
|
|
149
|
-
"dev": "wrangler dev --config proxy/wrangler.jsonc",
|
|
150
|
-
"deploy": "wrangler deploy --config proxy/wrangler.jsonc",
|
|
151
|
-
"deploy:dry-run": "wrangler deploy --config proxy/wrangler.jsonc --dry-run"
|
|
152
157
|
}
|
|
153
|
-
}
|
|
158
|
+
}
|