-
Notifications
You must be signed in to change notification settings - Fork 67
/
Copy pathpackage.json
56 lines (56 loc) · 1.53 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
{
"name": "@rbxts/types",
"version": "1.0.81",
"publishConfig": {
"access": "public"
},
"description": "TypeScript typings for the Roblox platform. Partially handwritten and partially automatically generated.",
"scripts": {
"build": "tsc && node out/index.js",
"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": "^3.0.0-types.0",
"@types/node": "^22.13.1",
"@types/ts-expose-internals": "npm:ts-expose-internals@=5.6.3",
"@typescript-eslint/eslint-plugin": "^7.18.0",
"@typescript-eslint/parser": "^7.18.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^10.0.1",
"eslint-plugin-no-autofix": "^2.1.0",
"eslint-plugin-prettier": "^5.2.3",
"eslint-plugin-simple-import-sort": "^12.1.1",
"prettier": "^3.5.0",
"typescript": "^5.6.3"
},
"keywords": [
"types",
"Roblox",
"typescript"
],
"files": [
"/include/**/*.d.ts",
"!/include/customDefinitions.d.ts",
"!/include/test.ts",
"plugin.d.ts"
],
"dependencies": {
"dom-serializer": "^2.0.0",
"domhandler": "^5.0.3",
"htmlparser2": "^10.0.0"
}
}