-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
88 lines (88 loc) · 2.22 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
{
"name": "do-proxy",
"description": "Simple interface for accessing Cloudflare Durable Objects' storage and class methods",
"keywords": [
"durable objects",
"do",
"cloudflare",
"workers"
],
"version": "1.3.4",
"type": "module",
"module": "./dist/do-proxy.js",
"main": "./dist/do-proxy.cjs",
"types": "./dist/do-proxy.d.ts",
"files": [
"dist"
],
"licence": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/osaton/do-proxy"
},
"tsup": {
"entry": {
"do-proxy": "src/index.ts"
},
"splitting": false,
"sourcemap": true,
"clean": true,
"minify": true,
"format": [
"esm",
"cjs"
],
"dts": true
},
"author": "osaton <[email protected]>",
"devDependencies": {
"@cloudflare/workers-types": "^4.20221111.1",
"@semantic-release/changelog": "^6.0.2",
"@semantic-release/commit-analyzer": "^9.0.2",
"@semantic-release/git": "^10.0.1",
"@semantic-release/npm": "^9.0.1",
"@semantic-release/release-notes-generator": "^10.0.3",
"@types/jest": "^29.1.2",
"esbuild": "^0.17.4",
"jest": "^29.2.0",
"jest-environment-miniflare": "^2.14.0",
"rimraf": "^5.0.0",
"ts-jest": "^29.1.2",
"tsup": "^7.2.0",
"typedoc": "^0.25.11",
"typescript": "^5.2.2",
"wrangler": "3.32.0"
},
"peerDependencies": {
"@cloudflare/workers-types": "^4.20221111.1"
},
"scripts": {
"perf": "node performance.js",
"doc": "typedoc src/index.ts",
"prepublish": "npm run test && npm run build",
"preversion": "npm run test && npm run build",
"start": "wrangler dev",
"build": "rimraf dist && tsup",
"build-test": "node build-test.js",
"deploy": "wrangler publish",
"test": "npm run build-test && node --experimental-vm-modules --no-warnings node_modules/jest/bin/jest.js"
},
"release": {
"branches": [
"main",
{
"name": "beta",
"channel": "beta",
"prerelease": true
}
],
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
"@semantic-release/changelog",
"@semantic-release/npm",
"@semantic-release/git",
"@semantic-release/github"
]
}
}