-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
48 lines (48 loc) · 1.17 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
{
"name": "@rbxts/scale-model",
"version": "2.0.6",
"description": "Scale and Resize Models and Parts while maintaining correct relationships with descendants",
"homepage": "https://github.com/FirstVertex/rbxts-scale-model",
"repository": {
"type": "git",
"url": "https://github.com/FirstVertex/rbxts-scale-model.git"
},
"main": "out/init.lua",
"scripts": {
"watch": "rbxtsc -w",
"build": "rbxtsc",
"patch": "npm version patch",
"publish": "npm publish",
"test": "npm pack"
},
"keywords": [
"roblox",
"model",
"scale",
"resize",
"part",
"roblox-ts",
"typescript"
],
"author": "FirstVertex",
"license": "ISC",
"types": "out/index.d.ts",
"files": [
"out"
],
"publishConfig": {
"access": "public"
},
"devDependencies": {
"@rbxts/compiler-types": "^1.0.0-types.0",
"@rbxts/types": "^1.0.466",
"@typescript-eslint/eslint-plugin": "^4.19.0",
"@typescript-eslint/parser": "^4.19.0",
"eslint": "^7.23.0",
"eslint-config-prettier": "^8.1.0",
"eslint-plugin-prettier": "^3.3.1",
"eslint-plugin-roblox-ts": "0.0.25",
"prettier": "^2.2.1",
"typescript": "^4.2.3"
}
}