-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 1.47 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": "blazestore",
"version": "1.0.0",
"main": "./lib/cjs/index.js",
"types": "./lib/cjs/types/index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/CaptainObjective/blazestore"
},
"files": [
"lib/**/*"
],
"exports": {
".": {
"import": {
"types": "./lib/esm/types/index.d.ts",
"default": "./lib/esm/index.mjs"
},
"require": {
"types": "./lib/cjs/types/index.d.ts",
"default": "./lib/cjs/index.js"
}
}
},
"scripts": {
"build": "npm-run-all clean build:esm build:cjs",
"compile:esm": "tsc -p ./tsconfig.esm.json",
"rename:esm": "move-cli lib/esm/index.js lib/esm/index.mjs",
"build:esm": "npm-run-all compile:esm rename:esm",
"build:cjs": "tsc -p ./tsconfig.cjs.json",
"prepack": "npm run build",
"clean": "rimraf ./lib",
"db": "firebase emulators:start",
"test": "vitest",
"test:coverage": "vitest run --coverage"
},
"devDependencies": {
"@testing-library/react": "^13.4.0",
"@types/react": "^18.0.21",
"@vitest/coverage-istanbul": "^0.29.8",
"axios": "^0.27.2",
"happy-dom": "^7.4.0",
"move-cli": "^2.0.0",
"npm-run-all": "^4.1.5",
"rimraf": "^3.0.2",
"type-fest": "^3.0.0",
"typescript": "^4.8.4",
"vite": "^4.2.1",
"vitest": "^0.29.8"
},
"peerDependencies": {
"react": ">=16.8.0",
"react-dom": ">=16.8.0"
},
"dependencies": {
"firebase": "^9.x.x"
},
"license": "MIT"
}