-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
59 lines (59 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
51
52
53
54
55
56
57
58
59
{
"name": "@altcha/firebase-app-check",
"version": "0.0.1",
"description": "Firebase App Check provider.",
"author": {
"name": "Daniel Regeci",
"url": "https://altcha.org"
},
"homepage": "https://altcha.org",
"repository": {
"type": "git",
"url": "https://github.com/altcha-org/firebase-app-check"
},
"license": "MIT",
"keywords": [
"altcha",
"firebase",
"appcheck"
],
"main": "./dist/index.js",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"type": "module",
"scripts": {
"build": "rimraf dist && rimraf cjs/dist && tsc -b tsconfig.build.json tsconfig.cjs.json",
"eslint": "eslint ./lib/**/*",
"format": "prettier --write './(lib|tests)/**/*'",
"test": "vitest --run",
"prepare": "husky"
},
"files": [
"cjs",
"dist"
],
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./cjs/dist/index.js",
"default": "./dist/index.js"
}
},
"devDependencies": {
"@types/node": "^20.16.3",
"@typescript-eslint/eslint-plugin": "^8.4.0",
"eslint": "^8.57.0",
"husky": "^9.1.5",
"prettier": "^3.3.3",
"rimraf": "^5.0.10",
"ts-node": "^10.9.2",
"tsx": "^4.19.0",
"typescript": "^5.5.4",
"vitest": "^1.6.0"
},
"dependencies": {
"altcha-lib": "^1.1.0",
"firebase": "^10.14.1"
}
}