-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
51 lines (51 loc) · 1.19 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
{
"name": "@rbxts/clack",
"version": "3.1.1",
"description": "User input helper classes",
"main": "out/init.lua",
"scripts": {
"build": "npx rbxtsc",
"watch": "npx rbxtsc -w",
"prepublishOnly": "npm run build"
},
"keywords": [
"input",
"keyboard",
"gamepad",
"mobile",
"touch",
"preferred",
"prefer",
"userinput",
"userinputservice"
],
"author": "sleitnick",
"repository": "github:Sleitnick/rbxts-clack",
"license": "MIT",
"types": "out/index.d.ts",
"files": [
"out",
"!**/*.tsbuildinfo"
],
"publishConfig": {
"access": "public"
},
"devDependencies": {
"@rbxts/compiler-types": "^2.0.4-types.0",
"@rbxts/types": "^1.0.642",
"@typescript-eslint/eslint-plugin": "^5.40.0",
"@typescript-eslint/parser": "^5.40.0",
"eslint": "^8.25.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-roblox-ts": "^0.0.34",
"prettier": "^2.7.1",
"roblox-ts": "^2.0.4",
"typescript": "^4.8.4"
},
"dependencies": {
"@rbxts/beacon": "^2.0.0",
"@rbxts/services": "^1.5.1",
"@rbxts/trove": "^1.3.0"
}
}