-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.4 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": "flame-core",
"version": "1.0.1",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"homepage": "https://github.com/abhijith-p-subash/flame-core",
"repository": {
"type": "git",
"url": "git+https://github.com/abhijith-p-subash/flame-core"
},
"scripts": {
"lint": "eslint src/**/*.ts",
"build": "tsup",
"test": "jest --passWithNoTests",
"prepare": "npm run build",
"prepublishOnly": "npm test && npm run lint",
"clean": "rimraf dist",
"dev": "ts-node src/index.ts"
},
"author": "Abhijith P Subash <[email protected]>",
"license": "MIT",
"description": "flame-core is a collection of Firebase services designed to simplify common tasks and make Firebase integration more efficient and enjoyable.",
"keywords": [
"firebase",
"authentication",
"database",
"storage",
"firebase curd operations"
],
"dependencies": {
"firebase": "^11.0.2"
},
"devDependencies": {
"@eslint/js": "^9.17.0",
"@types/jest": "^29.5.14",
"@types/node": "^22.10.1",
"@typescript-eslint/eslint-plugin": "^8.18.0",
"@typescript-eslint/parser": "^8.18.0",
"eslint": "^9.17.0",
"globals": "^15.13.0",
"jest": "^29.7.0",
"rimraf": "^6.0.1",
"ts-jest": "^29.2.5",
"ts-node": "^10.9.2",
"tsup": "^8.3.5",
"typescript": "^5.7.2",
"typescript-eslint": "^8.18.0"
}
}