-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.37 KB
/
Copy pathpackage.json
File metadata and controls
63 lines (63 loc) · 1.37 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
{
"name": "@simplepush/sdk",
"version": "0.1.1",
"description": "TypeScript SDK for Simplepush.",
"license": "MIT OR Apache-2.0",
"homepage": "https://simplepu.sh",
"repository": {
"type": "git",
"url": "git+https://github.com/simplepush/simplepush-js.git"
},
"bugs": {
"url": "https://github.com/simplepush/simplepush-js/issues"
},
"keywords": [
"simplepush",
"push",
"notifications",
"actionable-notifications",
"tasks",
"websocket",
"events",
"human-in-the-loop",
"approvals",
"end-to-end-encryption"
],
"type": "module",
"main": "./dist/index.mjs",
"module": "./dist/index.mjs",
"types": "./dist/index.d.mts",
"exports": {
".": {
"types": "./dist/index.d.mts",
"import": "./dist/index.mjs"
}
},
"files": [
"dist",
"README.md",
"LICENSE-MIT",
"LICENSE-APACHE"
],
"scripts": {
"build": "tsdown",
"prepublishOnly": "bun run typecheck && bun test && bun run build",
"dev": "tsdown --watch",
"typecheck": "tsc --noEmit",
"test": "bun test"
},
"dependencies": {
"libsodium-wrappers-sumo": "^0.8.4",
"ws": "^8.18.0"
},
"devDependencies": {
"@types/libsodium-wrappers-sumo": "^0.8.2",
"@types/node": "^20.0.0",
"@types/ws": "^8.5.0",
"tsdown": "^0.21.0",
"typescript": "^5.5.0"
},
"engines": {
"node": ">=20"
}
}