-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.51 KB
/
Copy pathpackage.json
File metadata and controls
64 lines (64 loc) · 1.51 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
64
{
"name": "@simplepush/cli",
"version": "0.1.0",
"description": "Command-line client for Simplepush.",
"license": "MIT OR Apache-2.0",
"homepage": "https://simplepu.sh",
"repository": {
"type": "git",
"url": "git+https://github.com/simplepush/simplepush-cli.git"
},
"bugs": {
"url": "https://github.com/simplepush/simplepush-cli/issues"
},
"keywords": [
"simplepush",
"cli",
"push",
"notifications",
"actionable-notifications",
"tasks",
"human-in-the-loop",
"approvals",
"ndjson",
"end-to-end-encryption"
],
"type": "module",
"bin": {
"simplepush": "./dist/main.mjs",
"sp": "./dist/main.mjs"
},
"files": [
"dist",
"README.md",
"LICENSE-MIT",
"LICENSE-APACHE"
],
"scripts": {
"build": "tsdown",
"build:binary": "bun build ./src/main.ts --compile --outfile ./bin/simplepush",
"dev": "bun run ./src/main.ts",
"test": "bun test",
"typecheck": "tsc --noEmit",
"prepublishOnly": "bun run typecheck && bun run test && bun run build"
},
"dependencies": {
"@effect/cli": "0.75.1",
"@effect/platform": "0.96.1",
"@effect/platform-node": "0.106.0",
"@scure/bip39": "^2.2.0",
"@simplepush/sdk": "^0.1.1",
"effect": "3.21.2",
"libsodium-wrappers-sumo": "^0.8.4"
},
"devDependencies": {
"@types/bun": "^1.1.0",
"@types/libsodium-wrappers-sumo": "^0.8.2",
"@types/node": "^20.0.0",
"tsdown": "^0.21.0",
"typescript": "^5.5.0"
},
"engines": {
"node": ">=20"
}
}