proxy/packages/server/package.json

20 lines
415 B
JSON
Raw Normal View History

2023-11-14 17:56:44 +00:00
{
"name": "server",
"version": "0.0.0",
"private": true,
"license": "MIT",
"publishConfig": {
"access": "public"
},
2023-11-16 12:16:52 +00:00
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
2023-11-16 12:36:55 +00:00
"dependencies": {
"express": "^4.18.2"
},
2023-11-16 12:16:52 +00:00
"scripts": {
2023-11-16 12:42:47 +00:00
"build": "tsup src/index.ts --format cjs,esm --dts",
"dev": "tsup src/index.ts --format cjs,esm --dts --watch"
2023-11-16 12:16:52 +00:00
}
2023-11-14 17:56:44 +00:00
}