-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 loc) · 1.46 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
{
"name": "@sunder/kit",
"version": "0.2.0",
"description": "Sunder/Cloudflare Worker building blocks for APIs and websites",
"repository": {
"type": "git",
"url": "github.com/sunderjs/kit"
},
"type": "module",
"scripts": {
"build": "rimraf build && tsc",
"format": "prettier -w src test",
"prepublishOnly": "echo \"Error: Don't run 'npm publish' in root. Use 'npm run dist' instead.\" && exit 1",
"dist": "npm i && npm t && npm run build && cp package.json build/src/ && cp README.md build/src/ && cd build/src && npm publish --ignore-scripts",
"test": "ava"
},
"keywords": [
"sunder",
"cloudflare-worker",
"cfworker"
],
"author": "Guido Zuidhof <[email protected]>",
"license": "MIT",
"dependencies": {
"@borderless/worker-sentry": "^1.0.2",
"@cloudflare/kv-asset-handler": "^0.1.3",
"cookie": "^0.4.1",
"sunder": "^0.9.2"
},
"devDependencies": {
"@cloudflare/workers-types": "^2.2.2",
"@peculiar/webcrypto": "^1.2.0",
"@types/cookie": "^0.4.0",
"@types/http-errors": "^1.8.0",
"ava": "^3.15.0",
"http-errors": "^1.8.0",
"prettier": "^2.3.0",
"ts-node": "^10.4.0",
"typescript": "^4.2.2"
},
"ava": {
"files": [
"test/**/*"
],
"extensions": {
"ts": "module"
},
"nonSemVerExperiments": {
"configurableModuleFormat": true
},
"require": [
"ts-node/register"
],
"nodeArguments": [
"--loader=ts-node/esm"
]
}
}