Skip to content

Commit

Permalink
package updated, typed for Position added
Browse files Browse the repository at this point in the history
  • Loading branch information
niczem committed Aug 31, 2023
1 parent 1c25d6c commit 5559280
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 4 deletions.
File renamed without changes.
12 changes: 8 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,17 @@
"name": "position-api",
"version": "1.0.0",
"description": "",
"main": "index.ts",
"types": "index.d.ts",
"main": "src/index.ts",
"types": "src/index.d.ts",
"bin": {
"position-api": "src/index.ts"
},
"scripts": {
"build": "npx tsc",
"start": "node dist/index.js",
"dev": "concurrently \"npx tsc --watch\" \"nodemon -q dist/index.js\"",
"test": "echo \"Error: no test specified\" && exit 1",
"postinstall": "cp -n .env.template .env"
"postinstall": "cp -N .env.template .env"
},
"author": "",
"license": "ISC",
Expand All @@ -30,6 +33,7 @@
"brotli": "^1.3.3",
"cors": "^2.8.5",
"path": "^0.12.7",
"puppeteer": "^19.7.2"
"puppeteer": "^19.7.2",
"request": "^2.88.2"
}
}
1 change: 1 addition & 0 deletions src/index.ts
100644 → 100755
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
#!/usr/bin/env ts-node
import dotenv from 'dotenv';
import Server from './classes/server';

Expand Down

0 comments on commit 5559280

Please sign in to comment.