-
-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
46 lines (46 loc) · 999 Bytes
/
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
{
"name": "@rbxts/sift",
"version": "0.0.9",
"description": "Immutable data library for Luau",
"main": "out/init.lua",
"types": "out/index.d.ts",
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "rbxtsc --type=package --rojo=''",
"watch": "rbxtsc -w",
"prepublishOnly": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/csqrl/sift.git"
},
"keywords": [
"array",
"dictionary",
"immutable",
"roblox-ts",
"roblox",
"table",
"luau",
"lua"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/csqrl/sift/issues"
},
"homepage": "https://csqrl.github.io/sift",
"files": [
"out",
"!**/*.tsbuildinfo"
],
"devDependencies": {
"@rbxts/compiler-types": "^1.2.3-types.0",
"@rbxts/types": "^1.0.515",
"rbxts-transform-debug": "^1.0.0-rc.1",
"rbxts-transform-env": "^1.0.0-rc.0",
"roblox-ts": "^1.2.7",
"typescript": "^4.3.5"
}
}