-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 1.88 KB
/
Copy pathpackage.json
File metadata and controls
77 lines (77 loc) · 1.88 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
{
"name": "@bitsocial/5chan-board-manager",
"version": "0.2.17",
"description": "4chan-style thread auto-archiving and purging for pkc-js communities",
"license": "GPL-3.0-or-later",
"repository": {
"type": "git",
"url": "git+https://github.com/bitsocialnet/5chan-board-manager.git"
},
"type": "module",
"files": [
"dist",
"bin",
"LICENSE",
"README.md"
],
"bin": {
"5chan": "./bin/run.js"
},
"oclif": {
"bin": "5chan",
"dirname": "5chan",
"commands": "./dist/commands",
"topicSeparator": " ",
"plugins": [
"@oclif/plugin-help"
],
"topics": {
"board": {
"description": "Manage boards in the config"
},
"defaults": {
"description": "Manage global default settings"
}
}
},
"engines": {
"node": ">=22.0.0"
},
"scripts": {
"build": "tsc && node scripts/copy-presets.mjs",
"generate:readme": "npx oclif readme",
"commit": "cz",
"prepare": "husky && npm run build",
"release": "HUSKY=0 release-it --config config/.release-it.json",
"test": "vitest run",
"test:e2e": "vitest run --config vitest.e2e.config.ts"
},
"dependencies": {
"@oclif/core": "4.8.0",
"@oclif/plugin-help": "6.2.37",
"@pkcprotocol/pkc-js": "0.0.22",
"@pkcprotocol/proper-lock-file": "4.2.1",
"chokidar": "5.0.0",
"env-paths": "3.0.0",
"strip-json-comments": "5.0.3",
"zod": "4.3.6"
},
"devDependencies": {
"@commitlint/cli": "20.4.1",
"@commitlint/config-conventional": "20.4.1",
"@release-it/conventional-changelog": "10.0.5",
"commitizen": "4.3.1",
"cz-conventional-changelog": "3.3.0",
"husky": "9.1.7",
"kubo": "0.41.0",
"oclif": "4.22.59",
"release-it": "19.2.4",
"typescript": "5.9.3",
"vitest": "4.0.18"
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
}
}