-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
41 lines (41 loc) · 1.07 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
{
"name": "@rbxts/object-pool",
"version": "1.1.0",
"main": "out/init.lua",
"license": "MIT",
"scripts": {
"build": "rbxtsc",
"watch": "rbxtsc -w",
"prepare": "yarn run build",
"watch:test": "rbxtsc -w --type=game -p ./test -i ./include",
"serve:test": "rojo serve ./test/default.project.json",
"dev:test": "concurrently yarn:watch:test yarn:serve:test"
},
"repository": {
"url": "https://github.com/KrissStyle/rbxts-object-pool"
},
"homepage": "https://github.com/KrissStyle/rbxts-object-pool",
"types": "out/index.d.ts",
"files": [
"out"
],
"publishConfig": {
"access": "public"
},
"dependencies": {
"@rbxts/destroyed-instance-logging": "^1.0.5"
},
"devDependencies": {
"@rbxts/compiler-types": "^1.2.3-types.1",
"@rbxts/types": "^1.0.566",
"@typescript-eslint/eslint-plugin": "^5.9.0",
"@typescript-eslint/parser": "^5.9.0",
"concurrently": "^7.1.0",
"eslint": "^8.6.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-roblox-ts": "^0.0.32",
"prettier": "^2.5.1",
"typescript": "^4.5.4"
}
}