-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.51 KB
/
package.json
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
{
"name": "cross-cf",
"version": "0.0.10",
"description": "Cross-environment DO and KV access",
"type": "module",
"source": "cross-cf.js",
"exports": {
"require": "./dist/cross-cf.cjs",
"default": "./dist/cross-cf.modern.js"
},
"main": "./dist/cross-cf.cjs",
"module": "./dist/cross-cf.module.js",
"unpkg": "./dist/cross-cf.umd.js",
"scripts": {
"build": "npx -y microbundle",
"pretest": "npx -y esbuild --bundle --platform=node --format=cjs --outfile=./dist/test.js test.js",
"test": "npx -y jest --verbose=true ./dist/test.js",
"integration": "TEST_MODE=integration npm run test",
"prepublishOnly": "npm run build"
},
"keywords": [
"cloudflare",
"kv",
"miniflare",
"durable",
"object"
],
"author": "David Konsumer <[email protected]>",
"homepage": "https://github.com/konsumer/cross-cf#readme",
"bugs": {
"url": "https://github.com/konsumer/cross-cf/issues",
"email": "[email protected]"
},
"repository": "konsumer/cross-cf",
"license": "MIT",
"dependencies": {
"@miniflare/kv": "^2.3.0",
"@miniflare/storage-file": "^2.3.0"
},
"files": [
"dist/cross-cf.cjs",
"dist/cross-cf.cjs.map",
"dist/cross-cf.modern.js",
"dist/cross-cf.modern.js.map",
"dist/cross-cf.module.js",
"dist/cross-cf.module.js.map",
"dist/cross-cf.umd.js",
"dist/cross-cf.umd.js.map"
],
"bin": {
"cross-cf": "./cli.cjs"
},
"devDependencies": {
"cross-fetch": "^3.1.5",
"wrangler": "^0.0.4"
}
}