1
0
mirror of https://github.com/spacebarchat/server.git synced 2024-11-10 04:32:35 +01:00

🔧 build

This commit is contained in:
Flam3rboy 2021-02-05 15:35:57 +01:00
parent 641f817fde
commit 81bfb4dbd2
2 changed files with 13 additions and 3 deletions

6
package-lock.json generated
View File

@ -796,6 +796,12 @@
"rimraf": "^3.0.0"
}
},
"typescript": {
"version": "4.1.3",
"resolved": "https://registry.npmjs.org/typescript/-/typescript-4.1.3.tgz",
"integrity": "sha512-B3ZIOf1IKeH2ixgHhj6la6xdwR9QrLC5d1VKeCSY4tvkqhF2eqd9O7txNlS0PO3GrBAFIdr3L1ndNwteUbZLYg==",
"dev": true
},
"util-deprecate": {
"version": "1.0.2",
"resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz",

View File

@ -2,9 +2,11 @@
"name": "discord-server-util",
"version": "1.0.0",
"description": "",
"main": "index.js",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
"test": "echo \"Error: no test specified\" && exit 1",
"build": "tsc -b ."
},
"repository": {
"type": "git",
@ -22,6 +24,8 @@
"lambert-db": "^1.1.4"
},
"devDependencies": {
"@types/jsonwebtoken": "^8.5.0"
"@types/jsonwebtoken": "^8.5.0",
"@types/node": "^14.14.25",
"typescript": "^4.1.3"
}
}