-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.78 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.78 KB
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
49
50
51
52
{
"name": "@rbxts/reward-containers",
"version": "1.0.1",
"description": "A generic, type-safe library for Roblox game development, written using roblox-ts, for granting rewards to players through containers.",
"main": "out/init.lua",
"scripts": {
"eslint": "npx eslint \"src/**/*.ts\" --max-warnings 0",
"prepublishOnly": "rm -rf ./out; rbxtsc --type=package",
"test": "rbxtsc --type=game && rojo build -o ./unit_tests.rbxlx && run-in-roblox ./unit_tests.rbxlx -s ./spec.server.lua",
"wsl-start-unit-tests": "set -e; rm -rf ./out; rbxtsc --type=game && rojo build -o unit_tests.rbxlx; ./scripts/open-in-windows ./unit_tests.rbxlx"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Bytebit-Org/roblox-RewardContainers.git"
},
"keywords": [],
"author": "Bytebit",
"license": "MIT",
"bugs": {
"url": "https://github.com/Bytebit-Org/roblox-RewardContainers/issues"
},
"homepage": "https://github.com/Bytebit-Org/roblox-RewardContainers#readme",
"publishConfig": {
"access": "public"
},
"files": [
"out/**/*.d.ts",
"out/**/!(*.spec).lua"
],
"types": "out/index.d.ts",
"devDependencies": {
"@rbxts/compiler-types": "^1.0.0-beta.14.1",
"@rbxts/types": "^1.0.546",
"@typescript-eslint/eslint-plugin": "^4.15.1",
"@typescript-eslint/parser": "^4.15.1",
"eslint": "^7.20.0",
"eslint-config-prettier": "^7.2.0",
"eslint-plugin-prettier": "^3.3.1",
"eslint-plugin-roblox-ts": "0.0.24",
"prettier": "^2.2.1",
"typedoc": "^0.20.28",
"typedoc-plugin-markdown": "^3.6.0",
"typescript": "^4.1.5"
},
"dependencies": {
"@rbxts/fitumi": "^1.0.8",
"@rbxts/inspect": "^1.0.1",
"@rbxts/services": "^1.1.2",
"@rbxts/signals-tooling": "^1.0.4",
"@rbxts/testez": "^0.3.1-ts.6"
}
}