-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
79 lines (79 loc) · 2.09 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
{
"name": "firebase-electron",
"version": "1.1.0",
"description": "Receive a Firebase notifications in your Electron app",
"keywords": [
"firebase",
"electron",
"typescript",
"fcm",
"gcm",
"nodejs",
"notifications"
],
"homepage": "https://github.com/rixcian/firebase-electron",
"bugs": {
"url": "https://github.com/rixcian/firebase-electron/issues"
},
"author": "rixcian <[email protected]> (https://rixcian.dev)",
"repository": {
"type": "git",
"url": "git+https://github.com/rixcian/firebase-electron.git"
},
"files": [
"dist"
],
"main": "dist/index.js",
"types": "dist/index.d.ts",
"type": "module",
"license": "MIT",
"scripts": {
"build": "rimraf dist && tsup && node afterBuild.js",
"ci": "npm run build && node afterBuild.js && npm run lint:fix && npm run test",
"dev": "tsc --watch",
"lint:fix": "tsc && prettier --write .",
"lint": "tsc && prettier --check --ignore-unknown .",
"check:exports": "attw --pack .",
"test": "vitest run",
"test:watch": "vitest",
"prerelease": "npx changeset",
"release": "changeset version && changeset publish",
"prepublishOnly": "npm run ci"
},
"exports": {
"./package.json": "./package.json",
"./dist/electron/consts": {
"import": "./dist/electron/consts.js",
"default": "./dist/electron/consts.cjs"
},
".": {
"import": "./dist/index.js",
"default": "./dist/index.cjs"
}
},
"devDependencies": {
"@arethetypeswrong/cli": "^0.15.4",
"@changesets/cli": "^2.27.7",
"@types/electron-config": "^3.2.2",
"@types/request-promise": "^4.1.51",
"@types/uuid": "^10.0.0",
"dotenv": "^16.4.5",
"prettier": "^3.3.3",
"rimraf": "^6.0.1",
"tsup": "^8.2.4",
"typescript": "^5.5.4",
"vitest": "^2.0.5"
},
"dependencies": {
"electron-config": "^1.0.0",
"http_ece": "^1.2.1",
"long": "^5.2.3",
"protobufjs": "^7.4.0",
"request": "^2.88.2",
"request-promise": "^4.2.6",
"uuid": "^10.0.0"
},
"peerDependencies": {
"electron": "^30.0.0"
}
}