-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 857 Bytes
/
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
{
"name": "@rbxts/mechanism",
"version": "1.1.0",
"main": "out/init.lua",
"scripts": {
"build": "rbxtsc",
"watch": "rbxtsc -w",
"prepublishOnly": "npm run build"
},
"repository": {
"url": "git+https://github.com/R-unic/mechanism.git"
},
"keywords": [
"roblox",
"input",
"mechanism"
],
"author": "runicly",
"license": "ISC",
"description": "An elegant composable input library for Roblox",
"types": "out/index.d.ts",
"files": [
"out",
"!**/*.tsbuildinfo"
],
"publishConfig": {
"access": "public"
},
"devDependencies": {
"@rbxts/compiler-types": "^3.0.0-types.0",
"@rbxts/types": "^1.0.813",
"roblox-ts": "^3.0.0",
"typescript": "^5.7.2"
},
"dependencies": {
"@rbxts/destroyable": "^1.0.1",
"@rbxts/id": "^1.0.0",
"@rbxts/lemon-signal": "^1.2.0"
}
}