forked from Mistrustfully/rbxts-ragdoll
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.01 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/r15-ragdoll",
"version": "1.0.0",
"description": "Port of https://devforum.roblox.com/t/r15-rthro-ragdolls/338580",
"main": "src/init.lua",
"scripts": {
"build": "rbxtsc",
"watch": "rbxtsc -w",
"prepublishOnly": "npm run build"
},
"keywords": [],
"author": {
"name": "Drew Warwick",
"url": "https://twitter.com/EchoReaper"
},
"contributors": [
{
"name": "Christian Fletcher",
"email": "[email protected]",
"url": "https://github.com/Mistrustfully"
}
],
"license": "ISC",
"types": "src/index.d.ts",
"files": [
"src",
"!**/*.tsbuildinfo"
],
"publishConfig": {
"access": "public"
},
"devDependencies": {
"@rbxts/compiler-types": "^2.0.2-types.0",
"@rbxts/types": "^1.0.642",
"@typescript-eslint/eslint-plugin": "^5.37.0",
"@typescript-eslint/parser": "^5.37.0",
"eslint": "^8.23.1",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-roblox-ts": "^0.0.34",
"prettier": "^2.7.1",
"typescript": "^4.8.3"
}
}