-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
99 lines (99 loc) · 2.66 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
89
90
91
92
93
94
95
96
97
98
99
{
"name": "@okkema/worker",
"version": "3.5.0",
"description": "Cloudflare Workers Toolkit",
"files": [
"dist",
"src"
],
"main": "./dist/core/index.js",
"types": "./dist/core/index.d.ts",
"exports": {
".": {
"types": "./dist/core/index.d.ts",
"default": "./dist/core/index.js"
},
"./api": {
"types": "./dist/api/index.d.ts",
"default": "./dist/api/index.js"
},
"./auth": {
"types": "./dist/auth/index.d.ts",
"default": "./dist/auth/index.js"
},
"./crypto": {
"types": "./dist/crypto/index.d.ts",
"default": "./dist/crypto/index.js"
},
"./google": {
"types": "./dist/google/index.d.ts",
"default": "./dist/google/index.js"
},
"./sentry": {
"types": "./dist/sentry/index.d.ts",
"default": "./dist/sentry/index.js"
},
"./utils": {
"types": "./dist/utils/index.d.ts",
"default": "./dist/utils/index.js"
}
},
"scripts": {
"build": "tsc -b ./tsconfig.json",
"clean": "rm -rf ./dist",
"lint": "eslint '**/*.{js,ts,json}'",
"lint:fix": "eslint '**/*.{js,ts,json}' --fix",
"postinstall": "git config core.hooksPath .githooks",
"postpublish": "npm run clean",
"prepack": "npm-run-all clean build",
"test": "jest",
"test:coverage": "jest --coverage",
"test:update": "jest --updateSnapshot",
"test:verbose": "jest --verbose"
},
"repository": {
"type": "git",
"url": "git+https://github.com/okkema/worker.git"
},
"keywords": [
"cloudflare",
"okkema",
"toolkit",
"workers"
],
"author": "Okkema Labs <correos@okkema.org>",
"license": "MIT",
"bugs": {
"url": "https://github.com/okkema/worker/issues"
},
"homepage": "https://worker.okkema.org",
"readme": "https://github.com/okkema/worker#readme",
"devDependencies": {
"@babel/core": "^7.15.0",
"@babel/preset-env": "^7.15.0",
"@babel/preset-typescript": "^7.15.0",
"@peculiar/webcrypto": "^1.1.7",
"@types/eslint": "^8.44.2",
"@types/jest": "^29.5.3",
"@types/service-worker-mock": "^2.0.1",
"@typescript-eslint/eslint-plugin": "^6.3.0",
"@typescript-eslint/parser": "^6.3.0",
"eslint": "^8.47.0",
"eslint-config-prettier": "^9.0.0",
"eslint-config-typescript": "^3.0.0",
"eslint-plugin-prettier": "^5.0.0",
"jest": "^29.6.2",
"prettier": "^3.0.1",
"service-worker-mock": "^2.0.5"
},
"dependencies": {
"@cloudflare/workers-types": "^4.20240903.0",
"@sentry/cloudflare": "^8.28.0",
"chanfana": "^2.0.4",
"googleapis": "^144.0.0",
"hono": "^4.5.11",
"npm-run-all": "^4.1.5",
"rfc4648": "^1.5.2",
"typescript": "^5.1.6"
}
}