forked from AlroviOfficial/RoZod
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.45 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
50
51
52
53
54
55
56
57
58
{
"name": "rozod",
"version": "4.4.3",
"description": "A TypeScript wrapper for the Roblox API",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"test": "jest --config jestconfig.json",
"build": "tsc && tsc --project tsconfig.declarations.json",
"format": "prettier --write \"src/**/*.ts\"",
"lint": "tslint -p tsconfig.json",
"prepare": "npm run build",
"prepublishOnly": "npm test",
"version": "npm run format && git add -A src",
"generate": "node ./zodios-endpoints.js"
},
"author": "AlroviOfficial",
"license": "ISC",
"dependencies": {
"p-limit": "^3.0.0",
"parse-roblox-errors": "^1.1.7",
"roblox-bat": "^0.3.3",
"zod": "^3.21.4"
},
"repository": {
"url": "https://github.com/AlroviOfficial/RoZod"
},
"bugs": {
"url": "https://github.com/AlroviOfficial/RoZod/issues"
},
"devDependencies": {
"@alexop/openapi-zod-client": "^1.11.2",
"@apidevtools/swagger-parser": "^10.1.0",
"@types/jest": "^29.5.1",
"@types/jsdom": "^21.1.2",
"@zodios/plugins": "^10.6.0",
"handlebars": "^4.7.8",
"jest": "^29.5.0",
"prettier": "^2.8.8",
"swagger2openapi": "^7.0.8",
"ts-jest": "^29.1.0",
"tslint": "^6.1.3",
"tslint-config-prettier": "^1.18.0",
"typedoc": "^0.24.8",
"typescript": "^5.0.4"
},
"keywords": [
"roblox",
"bot",
"api",
"roblox-api",
"zod",
"typescript"
],
"files": [
"lib/**/*"
]
}