-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 1.02 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
{
"name": "@rbxts/webhooks",
"version": "1.0.0",
"description": "A very simple layer of abstraction for interacting with Discord webhooks with Roblox-TS",
"main": "out/init.lua",
"scripts": {
"prepublishOnly": "rbxtsc",
"dev": "rbxtsc -w"
},
"keywords": [],
"author": "oonqt",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/oonqt/rbxts-webhooks/"
},
"bugs": {
"url": "https://github.com/oonqt/rbxts-webhooks/issues"
},
"publishConfig": {
"access": "public"
},
"types": "out/index.d.ts",
"devDependencies": {
"@rbxts/compiler-types": "^1.0.0-beta.16.1",
"@rbxts/types": "^1.0.459",
"@typescript-eslint/eslint-plugin": "^4.16.1",
"@typescript-eslint/parser": "^4.16.1",
"eslint": "^7.21.0",
"eslint-config-prettier": "^8.1.0",
"eslint-plugin-prettier": "^3.3.1",
"eslint-plugin-roblox-ts": "^0.0.24",
"prettier": "^2.2.1",
"typescript": "^4.2.2"
},
"dependencies": {
"@rbxts/delay-spawn-wait": "^2.0.0"
}
}