-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
88 lines (88 loc) · 2.27 KB
/
package.json
File metadata and controls
88 lines (88 loc) · 2.27 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
{
"name": "hyper-post",
"version": "0.1.0",
"description": "A unified social media posting tool for underground platforms - publish to multiple social networks in one go",
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"bin": {
"hyper-post": "./dist/cli.js"
},
"files": [
"dist",
"schema.prisma",
"README.md"
],
"scripts": {
"build": "tsup",
"dev": "tsup --watch",
"test": "jest",
"lint": "eslint src/**/*.ts",
"typecheck": "tsc --noEmit",
"setup": "node dist/setup.js",
"cli": "node dist/cli.js",
"db:generate": "prisma generate",
"db:push": "prisma db push",
"db:studio": "prisma studio",
"db:migrate": "prisma migrate dev",
"db:seed": "tsx prisma/seed.ts",
"setup-hooks": "bash scripts/setup-git-hooks.sh",
"security:scan": "bash scripts/security-scan.sh",
"security:audit": "gitleaks detect --source . --redact",
"security:scan:staged": "gitleaks protect --staged --source . --redact",
"postinstall": "bash scripts/setup-git-hooks.sh"
},
"keywords": [
"social-media",
"posting",
"automation",
"mastodon",
"bluesky",
"threads",
"discord",
"social-networking"
],
"author": "HyperDrift <yann@hyperdrift.io>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/hyperdrift-io/hyper-post.git"
},
"dependencies": {
"@atproto/api": "^0.18.7",
"@mdx-js/mdx": "^3.1.1",
"@prisma/client": "^5.22.0",
"axios": "^1.13.2",
"commander": "^11.1.0",
"discord.js": "^14.25.1",
"mastodon-api": "^1.3.0",
"remark": "^15.0.1",
"remark-stringify": "^11.0.0",
"zod": "^3.25.76"
},
"devDependencies": {
"@types/jest": "^29.5.14",
"@types/node": "^20.19.19",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
"eslint": "^8.57.1",
"jest": "^29.7.0",
"prisma": "^5.22.0",
"tsup": "^8.5.1",
"tsx": "^4.21.0",
"typescript": "^5.2.2"
},
"engines": {
"node": ">=18.0.0"
},
"pnpm": {
"overrides": {
"form-data": ">=2.5.4",
"glob": ">=10.5.0",
"esbuild": ">=0.25.0",
"mdast-util-to-hast": ">=13.2.1",
"js-yaml": ">=4.1.1",
"tough-cookie": ">=4.1.3"
}
}
}