little-durable-objects 0.1.0 → 0.1.2

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.
File without changes
package/package.json CHANGED
@@ -1,82 +1,80 @@
1
1
  {
2
- "name": "little-durable-objects",
3
- "version": "0.1.0",
4
- "description": "Provider-neutral durable objects for sandbox compute",
5
- "type": "module",
6
- "license": "MIT",
7
- "sideEffects": false,
8
- "engines": {
9
- "node": ">=20"
2
+ "name": "little-durable-objects",
3
+ "version": "0.1.2",
4
+ "description": "Provider-neutral durable objects for sandbox compute",
5
+ "type": "module",
6
+ "license": "MIT",
7
+ "sideEffects": false,
8
+ "engines": {
9
+ "node": ">=20"
10
+ },
11
+ "keywords": [
12
+ "actors",
13
+ "distributed-systems",
14
+ "durable-objects",
15
+ "modal",
16
+ "serverless"
17
+ ],
18
+ "repository": {
19
+ "type": "git",
20
+ "url": "git+https://github.com/TerseAI/little-durable-objects.git",
21
+ "directory": "npm"
22
+ },
23
+ "homepage": "https://github.com/TerseAI/little-durable-objects#readme",
24
+ "bugs": {
25
+ "url": "https://github.com/TerseAI/little-durable-objects/issues"
26
+ },
27
+ "publishConfig": {
28
+ "access": "public"
29
+ },
30
+ "main": "dist/index.js",
31
+ "types": "dist/index.d.ts",
32
+ "bin": {
33
+ "little-durable-objects-modal": "./dist/providers/modalCli.js"
34
+ },
35
+ "exports": {
36
+ ".": {
37
+ "types": "./dist/index.d.ts",
38
+ "import": "./dist/index.js"
10
39
  },
11
- "packageManager": "pnpm@10.17.1",
12
- "keywords": [
13
- "actors",
14
- "distributed-systems",
15
- "durable-objects",
16
- "modal",
17
- "serverless"
18
- ],
19
- "repository": {
20
- "type": "git",
21
- "url": "git+https://github.com/TerseAI/little-durable-objects.git",
22
- "directory": "npm"
40
+ "./host": {
41
+ "types": "./dist/host.d.ts",
42
+ "import": "./dist/host.js"
23
43
  },
24
- "homepage": "https://github.com/TerseAI/little-durable-objects#readme",
25
- "bugs": {
26
- "url": "https://github.com/TerseAI/little-durable-objects/issues"
44
+ "./modal": {
45
+ "types": "./dist/providers/modal.d.ts",
46
+ "import": "./dist/providers/modal.js"
27
47
  },
28
- "publishConfig": {
29
- "access": "public"
48
+ "./providers": {
49
+ "types": "./dist/providers/types.d.ts",
50
+ "import": "./dist/providers/types.js"
30
51
  },
31
- "main": "dist/index.js",
32
- "types": "dist/index.d.ts",
33
- "bin": {
34
- "little-durable-objects-modal": "./dist/providers/modalCli.js"
35
- },
36
- "exports": {
37
- ".": {
38
- "types": "./dist/index.d.ts",
39
- "import": "./dist/index.js"
40
- },
41
- "./host": {
42
- "types": "./dist/host.d.ts",
43
- "import": "./dist/host.js"
44
- },
45
- "./modal": {
46
- "types": "./dist/providers/modal.d.ts",
47
- "import": "./dist/providers/modal.js"
48
- },
49
- "./providers": {
50
- "types": "./dist/providers/types.d.ts",
51
- "import": "./dist/providers/types.js"
52
- },
53
- "./regions": {
54
- "types": "./dist/regions.d.ts",
55
- "import": "./dist/regions.js"
56
- }
57
- },
58
- "files": [
59
- "dist",
60
- "README.md",
61
- "LICENSE.md"
62
- ],
63
- "scripts": {
64
- "build": "tsc -p tsconfig.build.json",
65
- "check": "pnpm run format:check && pnpm run test && pnpm run package:check",
66
- "clean": "rm -rf dist .test-dist",
67
- "package:check": "node scripts/check-package.mjs",
68
- "prepack": "pnpm run clean && pnpm run build && pnpm run package:check",
69
- "test": "pnpm run clean && pnpm run build && tsc -p tsconfig.test.json && node --test --test-concurrency=1 .test-dist/*.test.js .test-dist/shared/*.test.js .test-dist/workflow/*.test.js .test-dist/host/*.test.js .test-dist/host/worker/*.test.js .test-dist/providers/*.test.js",
70
- "format": "prettier --config ../.prettierrc --write \"*.ts\" \"{fixtures,host,providers,shared,workflow}/**/*.ts\" \"scripts/*.mjs\"",
71
- "format:check": "prettier --config ../.prettierrc --check \"*.ts\" \"{fixtures,host,providers,shared,workflow}/**/*.ts\" \"scripts/*.mjs\""
72
- },
73
- "dependencies": {
74
- "modal": "^0.7.2",
75
- "tsx": "^4.0.0",
76
- "zod": "^4.3.6"
77
- },
78
- "devDependencies": {
79
- "@types/node": "^22.0.0",
80
- "typescript": "^5.0.0"
52
+ "./regions": {
53
+ "types": "./dist/regions.d.ts",
54
+ "import": "./dist/regions.js"
81
55
  }
82
- }
56
+ },
57
+ "files": [
58
+ "dist",
59
+ "README.md",
60
+ "LICENSE.md"
61
+ ],
62
+ "dependencies": {
63
+ "modal": "^0.7.2",
64
+ "tsx": "^4.0.0",
65
+ "zod": "^4.3.6"
66
+ },
67
+ "devDependencies": {
68
+ "@types/node": "^22.0.0",
69
+ "typescript": "^5.0.0"
70
+ },
71
+ "scripts": {
72
+ "build": "tsc -p tsconfig.build.json",
73
+ "check": "pnpm run format:check && pnpm run test && pnpm run package:check",
74
+ "clean": "rm -rf dist .test-dist",
75
+ "package:check": "node scripts/check-package.mjs",
76
+ "test": "pnpm run clean && pnpm run build && tsc -p tsconfig.test.json && node --test --test-concurrency=1 .test-dist/*.test.js .test-dist/shared/*.test.js .test-dist/workflow/*.test.js .test-dist/host/*.test.js .test-dist/host/worker/*.test.js .test-dist/providers/*.test.js",
77
+ "format": "prettier --config ../.prettierrc --write \"*.ts\" \"{fixtures,host,providers,shared,workflow}/**/*.ts\" \"scripts/*.mjs\"",
78
+ "format:check": "prettier --config ../.prettierrc --check \"*.ts\" \"{fixtures,host,providers,shared,workflow}/**/*.ts\" \"scripts/*.mjs\""
79
+ }
80
+ }