-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
38 lines (38 loc) · 940 Bytes
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
{
"name": "pipebomb.js",
"version": "0.11.0",
"description": "Library for interacting with Pipe Bomb servers",
"main": "dist/index.js",
"type": "module",
"typings": "dist/index.d.ts",
"scripts": {
"test": "node --trace-warnings test/test.js",
"watch": "npx tsc -w",
"build": "npm run clean && npx tsc",
"check": "npx tsc --noEmit",
"clean": "npx rimraf dist/",
"rimraf": "./node_modules/rimraf/bin.js",
"push": "npm run build && npm publish",
"pack": "npm run build && npm pack"
},
"repository": {
"type": "git",
"url": "https://github.com/Pipe-Bomb/PipeBomb.js.git"
},
"keywords": [
"audio",
"pipe-bomb"
],
"author": "eyezah",
"license": "MIT",
"dependencies": {
"axios": "^1.3.3",
"crypto-js": "^4.1.1"
},
"devDependencies": {
"@types/crypto-js": "^4.1.1",
"@types/node": "^20.2.0",
"rimraf": "^5.0.0",
"typescript": "^5.0.3"
}
}