-
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 1.63 KB
/
Copy pathpackage.json
File metadata and controls
67 lines (67 loc) · 1.63 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
{
"name": "@apoorvdarshan/crossposter",
"version": "1.1.11",
"description": "Local-first social publishing dashboard for accounts you control.",
"license": "MIT",
"homepage": "https://crossposter.apoorvdarshan.com",
"repository": {
"type": "git",
"url": "git+https://github.com/apoorvdarshan/crossposter.git"
},
"bugs": {
"url": "https://github.com/apoorvdarshan/crossposter/issues"
},
"bin": {
"crossposter": "bin/crossposter.mjs"
},
"files": [
"app",
"bin",
"components",
"lib",
"public",
"scripts",
"next.config.mjs",
"next-env.d.ts",
"requirements.txt",
"tsconfig.json",
"README.md",
"CHANGELOG.md",
"LICENSE",
"AGENT_POSTING.md"
],
"scripts": {
"dev": "next dev",
"dev:local": "node scripts/run-local.mjs",
"crossposter": "node bin/crossposter.mjs",
"local:install": "./scripts/install-local-service.sh",
"local:uninstall": "./scripts/uninstall-local-service.sh",
"build": "next build",
"start": "next start",
"lint": "eslint .",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"image-size": "^2.0.2",
"lucide-react": "^0.468.0",
"next": "^15.1.0",
"nostr-tools": "^2.23.5",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"simple-icons": "^16.21.0",
"typescript": "^5.7.2",
"youtubei.js": "^17.0.1",
"zod": "^3.24.1"
},
"devDependencies": {
"@eslint/eslintrc": "^3.3.5",
"@types/node": "^22.10.2",
"@types/react": "^19.0.2",
"@types/react-dom": "^19.0.2",
"eslint": "^9.17.0",
"eslint-config-next": "^15.1.0"
},
"overrides": {
"postcss": "^8.5.10"
}
}