proxy/packages/server/package.json

19 lines
352 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": {
"build": "tsup src/index.ts --format cjs,esm --dts"
}
2023-11-14 17:56:44 +00:00
}