-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
44 lines (44 loc) · 1.21 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
{
"name": "@rbxts/timer",
"version": "0.0.9",
"description": "A simple package for creating timers to more accurately track time and allow for cancellation. Written using roblox-ts.",
"main": "out/init.lua",
"types": "out/index.d.ts",
"scripts": {
"prepublishOnly": "rm -rf ./out; rbxtsc --type=package"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Bytebit-Org/roblox-Timer.git"
},
"keywords": [],
"author": "Bytebit",
"license": "MIT",
"bugs": {
"url": "https://github.com/Bytebit-Org/roblox-Timer/issues"
},
"homepage": "https://github.com/Bytebit-Org/roblox-Timer#readme",
"private": false,
"publishConfig": {
"access": "public"
},
"devDependencies": {
"@rbxts/compiler-types": "^2.1.1-types.0",
"@rbxts/types": "^1.0.705",
"@typescript-eslint/eslint-plugin": "^2.17.0",
"@typescript-eslint/parser": "^2.17.0",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.9.0",
"eslint-plugin-prettier": "^3.1.2",
"eslint-plugin-roblox-ts": "0.0.7",
"prettier": "^1.19.1"
},
"dependencies": {
"@rbxts/dumpster": "^1.0.8",
"@rbxts/services": "^1.1.5",
"@rbxts/signals-tooling": "^1.0.4"
},
"files": [
"out"
]
}