-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
50 lines (50 loc) · 1.37 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
{
"name": "@rbxts/variant",
"version": "1.0.2",
"description": "Variant types in Roblox TypeScript",
"main": "out/init.lua",
"scripts": {
"build": "rbxtsc",
"watch": "rbxtsc -w",
"prepare": "npm run build",
"test:setup": "cd tests && npm install && npm run init && npm run build",
"test:run": "run-in-roblox --place ./tests/tests.rbxl --script ./tests/out/main.server.lua",
"test": "npm run test:setup && npm run test:run"
},
"keywords": ["variants", "roblox", "typescript"],
"author": "Vorlias",
"contributors": [
{
"name": "Paarth",
"url": "https://github.com/paarthenon"
}
],
"license": "MPL-2.0",
"types": "out/index.d.ts",
"files": [
"out",
"!**/*.tsbuildinfo"
],
"repository": {
"type": "git",
"url": "git+https://github.com/roblox-aurora/rbx-variant.git"
},
"publishConfig": {
"access": "public"
},
"devDependencies": {
"@rbxts/compiler-types": "^1.2.9-types.0",
"@rbxts/services": "^1.2.0",
"@rbxts/testez": "^0.3.1-ts.7",
"@rbxts/types": "^1.0.571",
"@typescript-eslint/eslint-plugin": "^5.16.0",
"@typescript-eslint/parser": "^5.16.0",
"eslint": "^8.12.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-roblox-ts": "^0.0.32",
"prettier": "^2.6.1",
"roblox-ts": "^1.3.3",
"typescript": "^4.6.3"
}
}