@seed-app-studio/sdk 0.1.1-canary.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/package.json ADDED
@@ -0,0 +1,46 @@
1
+ {
2
+ "name": "@seed-app-studio/sdk",
3
+ "version": "0.1.1-canary.0",
4
+ "description": "SDK for SEED App Studio applications.",
5
+ "license": "Apache-2.0",
6
+ "files": [
7
+ "dist",
8
+ "package.json"
9
+ ],
10
+ "type": "module",
11
+ "sideEffects": false,
12
+ "main": "./dist/index.mjs",
13
+ "types": "./dist/index.d.mts",
14
+ "exports": {
15
+ ".": {
16
+ "types": "./dist/index.d.mts",
17
+ "seed-source": "./src/index.ts",
18
+ "import": "./dist/index.mjs",
19
+ "default": "./dist/index.mjs"
20
+ },
21
+ "./package.json": "./package.json"
22
+ },
23
+ "publishConfig": {
24
+ "access": "public",
25
+ "registry": "https://registry.npmjs.org/"
26
+ },
27
+ "scripts": {
28
+ "clean": "node -e \"require('fs').rmSync('dist',{recursive:true,force:true})\"",
29
+ "build": "bun run clean && tsdown src/index.ts --format esm --dts --out-dir dist --platform node --tsconfig tsconfig.build.json",
30
+ "prepack": "bun run build",
31
+ "test": "vitest run --config vitest.config.ts",
32
+ "typecheck": "tsc --noEmit -p tsconfig.json",
33
+ "topo": "node -e \"\"",
34
+ "check-types": "tsc --noEmit -p tsconfig.json",
35
+ "test:coverage": "vitest run --coverage --config vitest.config.ts"
36
+ },
37
+ "dependencies": {
38
+ "@seed-app-studio/protocol": "0.1.1-canary.0"
39
+ },
40
+ "devDependencies": {
41
+ "@types/node": "^24.3.1",
42
+ "tsdown": "^0.22.3",
43
+ "typescript": "^5.8.3",
44
+ "vitest": "^4.1.0"
45
+ }
46
+ }