forked from xizeyoupan/Meting-API
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
36 lines (36 loc) · 1.06 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
{
"name": "meting-backend-js",
"version": "1.0.8",
"description": "",
"main": "node.js",
"scripts": {
"build:all": "node esbuild.config.js",
"start:node": "node node.js",
"start:deno": "deno run --allow-net --allow-env dist/deno.js",
"test": "vitest run",
"patch": "npm version patch && git push origin main && git push origin --tags",
"minor": "npm version minor && git push origin main && git push origin --tags",
"major": "npm version major && git push origin main && git push origin --tags"
},
"engines": {
"node": ">=18.0.0"
},
"type": "module",
"author": "xizeyoupan",
"license": "MIT",
"devDependencies": {
"esbuild-plugin-resolve": "^1.0.3",
"esbuild-plugin-text-replace": "^1.2.0",
"vitest": "^0.29.2"
},
"dependencies": {
"@esbuild-plugins/node-globals-polyfill": "^0.2.3",
"@esbuild-plugins/node-modules-polyfill": "^0.2.2",
"@hono/node-server": "^1.8.2",
"buffer": "^6.0.3",
"crypto-browserify": "^3.12.0",
"esbuild": "0.17.5",
"hono": "^4.1.0",
"nanoid": "^4.0.0"
}
}