-
Notifications
You must be signed in to change notification settings - Fork 61
/
package.json
63 lines (63 loc) · 1.91 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
59
60
61
62
63
{
"name": "@rbxts/types",
"version": "1.0.81",
"publishConfig": {
"access": "public"
},
"description": "TypeScript typings for the Roblox platform. Partially handwritten and partially automatically generated.",
"scripts": {
"download-content": "wget -O devhub-scraper.zip https://github.com/roblox-ts/devhub-scraper/archive/master.zip",
"unzip-content": "unzip -q -o devhub-scraper.zip",
"fetch-content": "npm run download-content && npm run unzip-content",
"generate-files": "tsc && node out/index.js",
"build": "npm run fetch-content && npm run generate-files",
"eslint-src": "npx eslint \"src/**/*.ts\" --max-warnings 0",
"eslint-include": "npx eslint \"include/*.ts\" --max-warnings 0",
"eslint": "npm run eslint-src && npm run eslint-include"
},
"main": "include/roblox.d.ts",
"types": "include/roblox.d.ts",
"repository": {
"type": "git",
"url": "git+https://github.com/roblox-ts/types.git"
},
"author": "roblox-ts",
"license": "MIT",
"bugs": {
"url": "https://github.com/roblox-ts/types/issues"
},
"homepage": "https://github.com/roblox-ts/types#readme",
"devDependencies": {
"@rbxts/compiler-types": "^2.2.0-types.0",
"@types/fs-extra": "^11.0.4",
"@types/jsdom": "^21.1.7",
"@types/libxmljs": "^0.18.13",
"@types/node": "^20.14.9",
"@types/showdown": "^2.0.6",
"@typescript-eslint/eslint-plugin": "^7.15.0",
"@typescript-eslint/parser": "^7.15.0",
"axios": "^1.7.2",
"breakdance": "^3.0.1",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-no-autofix": "^2.0.0",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-simple-import-sort": "^12.1.1",
"fs-extra": "^11.2.0",
"libxmljs2": "^0.33.0",
"prettier": "^3.3.2",
"ts-morph": "^23.0.0",
"typescript": "^5.2.2"
},
"keywords": [
"types",
"Roblox",
"typescript"
],
"files": [
"/include/**/*.d.ts",
"!/include/customDefinitions.d.ts",
"!/include/test.ts",
"plugin.d.ts"
]
}