-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.13 KB
/
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
39
40
41
42
43
44
45
46
47
48
49
{
"name": "boblox.ts",
"version": "0.8.1-alpha",
"description": "Interact in real-time with the Roblox API",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"lint": "eslint src/ --ext .ts",
"prepare": "npm run build",
"prepublishOnly": "npm run lint",
"preversion": "npm run lint",
"version": "git add -A src",
"postversion": "git push && git push --tags",
"build": "tsc",
"test": "npx jest"
},
"files": [
"dist/**/*"
],
"keywords": [
"roblox",
"api",
"interact"
],
"repository": {
"type": "git",
"url": "git+https://github.com/thefakewater/boblox.ts.git"
},
"author": "TheFakeWater",
"license": "GPL-3.0-only",
"dependencies": {
"@types/ws": "^8.2.0",
"axios": "^1.2.5",
"opn-url": "^1.0.1",
"ws": "^8.2.3",
"typed-emitter": "^2.0.0"
},
"devDependencies": {
"@types/node": "^22.7.4",
"@typescript-eslint/eslint-plugin": "^5.3.1",
"@typescript-eslint/parser": "^5.3.1",
"eslint": "^8.2.0",
"typedoc": "^0.23.2",
"typescript": "^4.4.4"
},
"optionalDependencies": {
"windows-mutex": "^0.4.1"
}
}