feat(package.json): change main entry point and add development script
This commit modifies the `package.json` file in two key ways. The main file is now `src/app.ts` instead of `dist/app.js`. Additionally, a new script `bun:dev` has been added to aid in development, which watches the main file for changes. Signed-off-by: Mathis <yidhra@tuta.io>
This commit is contained in:
parent
8fe0fa57d8
commit
d05c7efadc
@ -2,10 +2,13 @@
|
|||||||
"name": "brief-05-back",
|
"name": "brief-05-back",
|
||||||
"version": "1.0.0",
|
"version": "1.0.0",
|
||||||
"description": "",
|
"description": "",
|
||||||
"main": "dist/app.js",
|
"main": "src/app.ts",
|
||||||
"keywords": [],
|
"keywords": [],
|
||||||
"author": "Mathis HERRIOT",
|
"author": "Mathis HERRIOT",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
|
"scripts": {
|
||||||
|
"bun:dev": "--watch src/app.ts"
|
||||||
|
},
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@node-rs/argon2": "^1.8.3",
|
"@node-rs/argon2": "^1.8.3",
|
||||||
"compression": "^1.7.4",
|
"compression": "^1.7.4",
|
||||||
|
Loading…
x
Reference in New Issue
Block a user