-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1.01 KB
/
package.json
File metadata and controls
38 lines (38 loc) · 1.01 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
{
"name": "@rbxts/better-queue",
"version": "0.1.1",
"description": "Simple O(1) queue implementation for Roblox",
"author": "runicly",
"main": "out/init.lua",
"scripts": {
"setup-rokit": "rokit trust lune-org/lune && rokit trust rojo-rbx/rojo && rokit install",
"build": "npm run setup-rokit && rbxtsc ",
"dev": "npm run build -- -w",
"prepublishOnly": "npm test",
"test": "npm run build && npm run build -- -p tests && rojo build tests -o tests/test-environment.rbxl && lune run tests tests/test-environment.rbxl"
},
"keywords": [
"roblox",
"rbxts"
],
"repository": {
"type": "git",
"url": "git+https://github.com/R-unic/better-queue.git"
},
"license": "ISC",
"types": "out/index.d.ts",
"files": [
"out",
"!**/*.tsbuildinfo"
],
"publishConfig": {
"access": "public"
},
"devDependencies": {
"@rbxts/compiler-types": "^3.0.0-types.0",
"@rbxts/types": "^1.0.813",
"roblox-ts": "^3.0.0",
"typescript": "=5.5.3",
"node": "^20.19.0"
}
}