-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
62 lines (62 loc) · 2.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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
{
"name": "sentinel",
"version": "0.1.0",
"description": "",
"private": true,
"scripts": {
"build": "rbxtsc --rojo build.project.json",
"build:test": "rbxtsc --type game --rojo build.project.json",
"watch": "rbxtsc -w --rojo build.project.json",
"watch:test": "rbxtsc -w --type game --rojo build.project.json",
"rojo": "npm run build:test && concurrently --kill-others npm:watch:test npm:rojo:serve",
"rojo:serve": "rojo serve test.project.json --address 0.0.0.0",
"rojo:build": "rojo build --output build.rbxl test.project.json",
"rojo:publish": "rojo build --output build.rbxl default.project.json",
"test": "npm run test:build && npm run test:run",
"test:run": "run-in-roblox --place build.rbxl --script out/tests/runners/run.server.lua",
"test:build": "npm run build:test && npm run rojo:build",
"lint": "eslint src tests --max-warnings 0",
"publish": "npm run build && npm run rojo:publish",
"prepublishOnly": "npm run build"
},
"keywords": [
"roblox-ts",
"roblox",
"typescript"
],
"repository": "github:lasttalon/sentinel",
"homepage": "https://lasttalon.github.io/sentinel/",
"bugs": "https://github.com/LastTalon/sentinel/issues",
"author": "Lucas Gangstad",
"license": "MIT",
"main": "out/src/init.lua",
"files": [
"out/src",
"!**/*.tsbuildinfo"
],
"dependencies": {
"@rbxts/matter": "^0.6.2-ts.6",
"@rbxts/matter-hooks": "^0.1.1",
"@rbxts/plasma": "^0.4.1-ts.0",
"@rbxts/rewire": "^0.3.0",
"@rbxts/roact": "^1.4.4-ts.0",
"@rbxts/roact-rodux": "^0.2.2-ts.8",
"@rbxts/rodux": "^3.0.0-ts.3",
"@rbxts/services": "^1.5.1"
},
"devDependencies": {
"@rbxts/compiler-types": "^2.0.4-types.1",
"@rbxts/testez": "^0.4.2-ts.0",
"@rbxts/types": "^1.0.651",
"@typescript-eslint/eslint-plugin": "^5.46.0",
"@typescript-eslint/parser": "^5.46.0",
"concurrently": "^7.6.0",
"eslint": "^8.29.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-roblox-ts": "^0.0.35",
"prettier": "^2.8.1",
"roblox-ts": "^2.0.4",
"typescript": "^4.9.4"
}
}