This repository has been archived by the owner on Dec 28, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.55 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
{
"name": "@rbxts/firestore",
"version": "2.0.1",
"description": "Roblox API for interfacing with Google Cloud Firestore",
"main": "out/init.lua",
"scripts": {
"build": "rbxtsc build --type=package",
"typedoc": "npx typedoc --out docs ./src --plugin typedoc-plugin-nojekyll",
"eslint": "eslint \"src/**/*.ts\" --max-warnings 0",
"test": "npm run build && npm run test:rojo && npm run test:run",
"test:rojo": "rojo build tests -o ./tests/test.rbxlx",
"test:run": "run-in-roblox --place ./tests/test.rbxlx --script ./tests/spec.lua"
},
"repository": {
"type": "git",
"url": "git+https://github.com/LouieK22/rbx-firestore-api.git"
},
"keywords": [],
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/LouieK22/rbx-firestore-api/issues"
},
"homepage": "https://github.com/LouieK22/rbx-firestore-api#readme",
"publishConfig": {
"access": "public"
},
"types": "out/index.d.ts",
"devDependencies": {
"@rbxts/compiler-types": "^1.1.1-types.5",
"@rbxts/types": "^1.0.503",
"@typescript-eslint/eslint-plugin": "^4.28.2",
"@typescript-eslint/parser": "^4.28.2",
"eslint": "^7.30.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-roblox-ts": "0.0.29",
"prettier": "^2.3.2",
"roblox-ts": "^1.1.1",
"typedoc": "^0.21.2",
"typedoc-plugin-nojekyll": "^1.0.1",
"typescript": "^4.3.5"
},
"dependencies": {
"@rbxts/inspect": "^1.0.1",
"@rbxts/services": "^1.1.5",
"@rbxts/testez": "^0.3.1-ts.6"
}
}