Files
d4h-typescript/test/package.json
T
2023-03-19 18:01:57 -07:00

20 lines
438 B
JSON

{
"name": "d4h-typescript-test",
"version": "1.0.0",
"main": "./built/index.js",
"license": "MIT",
"scripts": {
"build": "npm run build-lib && npx tsc",
"build-lib": "cd ../lib && npm run build",
"launch": "npm run build && node ./built"
},
"devDependencies": {
"@types/node": "^18.15.0",
"typescript": "^4.8.4"
},
"dependencies": {
"d4h-typescript": "file:../lib",
"dotenv": "^16.0.3"
}
}