Files
NodeTest/package.json
Cyanoure fca0f47fb0 TSUP
2024-09-15 14:32:53 +02:00

25 lines
454 B
JSON

{
"name": "app",
"version": "1.0.0",
"main": "./dist/index.ts",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"files":[
"dist"
],
"scripts": {
"start": "ts-node src/index.ts",
"build": "tsup",
"postinstall": "npm run build"
},
"keywords": [],
"author": "",
"license": "ISC",
"description": "",
"devDependencies": {
"ts-node": "^10.9.2",
"tsup": "^8.2.4",
"typescript": "^5.6.2"
}
}