-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
60 lines (60 loc) · 1.93 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
{
"name": "cloudflare-worker-matrix-well-known",
"type": "module",
"packageManager": "[email protected]",
"private": true,
"scripts": {
"dev": "wrangler dev src/index.ts",
"lint": "eslint src",
"local": "WRANGLER_SEND_METRICS=false wrangler dev src/index.ts --local",
"local-exp": "wrangler dev src/index.ts --experimental-local",
"deploy": "wrangler publish src/index.ts",
"start-stackblitz": "WRANGLER_SEND_METRICS=false wrangler dev src/index.ts --local",
"build": "yarn run check && yarn run compile",
"compile": "node ./scripts/build.js",
"check": "yarn run clean && tsc -p tsconfig.json",
"clean": "rm -rf dist/* ||:",
"commit": "cz",
"test": "vitest",
"publish": "yarn run wrangler publish"
},
"repository": {
"type": "git",
"url": "git+https://github.com/franchb/cloudflare-worker-matrix-well-known.git"
},
"devDependencies": {
"@cloudflare/workers-types": "^4.20230518.0",
"@esbuild-plugins/node-modules-polyfill": "^0.2.2",
"@miniflare/core": "^2.14.1",
"@types/eslint": "^8",
"@typescript-eslint/eslint-plugin": "^5.59.8",
"commitizen": "^4.3.0",
"cz-conventional-changelog": "^3.3.0",
"esbuild": "^0.17.19",
"eslint": "^8.47.0",
"eslint-config-standard-with-typescript": "latest",
"eslint-plugin-import": "^2.28.1",
"eslint-plugin-n": "^16.2.0",
"eslint-plugin-promise": "^6.1.1",
"miniflare": "^3.20231218.2",
"typescript": "*",
"vite": "^5.4.2",
"vitest": "^1.0.4",
"vitest-environment-miniflare": "^2.14.1",
"wrangler": "^3.19.0"
},
"author": "Franchb",
"license": "Apache 2.0",
"bugs": {
"url": "https://github.com/franchb/cloudflare-worker-matrix-well-known/issues"
},
"homepage": "https://github.com/franchb/cloudflare-worker-matrix-well-known#readme",
"dependencies": {
"itty-router": "v4.0.14"
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
}
}