-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 2.13 KB
/
Copy pathpackage.json
File metadata and controls
65 lines (65 loc) · 2.13 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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
{
"name": "firebase-rest-firestore",
"version": "1.6.0",
"description": "Firebase Firestore REST API client for Edge runtime environments",
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"types": "dist/types/index.d.ts",
"files": [
"dist",
"README.md"
],
"scripts": {
"build": "npm run build:esm && npm run build:cjs && npm run build:types",
"build:esm": "tsc -p tsconfig.esm.json",
"build:cjs": "tsc -p tsconfig.cjs.json",
"build:types": "tsc -p tsconfig.json --emitDeclarationOnly --declarationDir dist/types",
"watch": "concurrently \"npm run watch:esm\" \"npm run watch:cjs\" \"npm run watch:types\"",
"watch:esm": "tsc -p tsconfig.esm.json --watch",
"watch:cjs": "tsc -p tsconfig.cjs.json --watch",
"watch:types": "tsc -p tsconfig.json --emitDeclarationOnly --declarationDir dist/types --watch",
"prepublishOnly": "npm run build",
"setup:local:env": "cp .env.local.example .env && echo 'Created .env file from local example.'",
"emulator:start": "cd test/emulator && firebase emulators:start -P demo-test-project",
"emulator:stop": "npx kill-port -y 4089 8089 9089",
"test": "vitest",
"test:unit": "vitest run test/converter.test.ts test/references.test.ts test/field-value.test.ts",
"test:emulator": "bash test/scripts/test-with-emulator.sh"
},
"keywords": [
"firebase",
"firestore",
"rest",
"api",
"edge",
"cloudflare",
"workers",
"vercel"
],
"author": "",
"license": "MIT",
"dependencies": {
"jose": "^4.14.4"
},
"devDependencies": {
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@types/node": "^18.16.0",
"concurrently": "^8.2.2",
"dotenv": "^16.4.7",
"semantic-release": "^24.2.3",
"typescript": "^5.0.4",
"vitest": "^3.0.9"
},
"engines": {
"node": ">=20.8.1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/nabettu/firebase-rest-firestore.git"
},
"bugs": {
"url": "https://github.com/nabettu/firebase-rest-firestore/issues"
},
"homepage": "https://github.com/nabettu/firebase-rest-firestore#readme"
}