-
Notifications
You must be signed in to change notification settings - Fork 23
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.55 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.55 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
{
"name": "@cloudflare/actors",
"version": "0.0.1-beta.6",
"description": "An easier way to build with Cloudflare Durable Objects",
"type": "module",
"main": "./dist/index.js",
"workspaces": [
"packages/*",
"examples/*"
],
"exports": {
".": "./dist/core/src/index.js",
"./storage": "./dist/storage/src/index.js",
"./alarms": "./dist/alarms/src/index.js"
},
"types": "./dist/core/src/index.d.ts",
"typesVersions": {
"*": {
".": ["./dist/core/src/index.d.ts"],
"storage": ["./dist/storage/src/index.d.ts"],
"alarms": ["./dist/alarms/src/index.d.ts"]
}
},
"files": [
"dist"
],
"sideEffects": false,
"scripts": {
"deploy": "wrangler deploy",
"cf-typegen": "wrangler types",
"build": "tsc -p ./packages",
"dev": "vite",
"clean": "rm -rf dist .wrangler worker-configuration.d.ts"
},
"engines": {
"node": ">=18.0.0"
},
"keywords": [
"cloudflare",
"workers",
"actor",
"framework",
"distributed-systems"
],
"author": "Cloudflare",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/cloudflare/actors"
},
"optionalDependencies": {
"cron-schedule": "^5.0.4",
"nanoid": "^5.1.5"
},
"devDependencies": {
"@cloudflare/vite-plugin": "1.12.3",
"typescript": "^5.5.2",
"vite": "^6.3.5",
"wrangler": "^4.34.0"
}
}