-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
130 lines (130 loc) · 4.84 KB
/
package.json
File metadata and controls
130 lines (130 loc) · 4.84 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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
{
"name": "bitsocial-cli",
"version": "0.19.35",
"description": "Command line interface to BitSocial API",
"types": "./dist/index.d.ts",
"homepage": "https://github.com/bitsocialhq/bitsocial-cli",
"repository": "git@github.com:bitsocialhq/bitsocial-cli.git",
"author": "Bitsocial Labs",
"license": "GPL-2.0-only",
"type": "module",
"private": true,
"exports": null,
"scripts": {
"clean": "rm -rf tmp/",
"build": "tsc --project config/tsconfig.json",
"build:test": "tsc --project config/test.tsconfig.json",
"build:watch": "tsc --watch --project config/tsconfig.json",
"build:test:watch": "tsc --watch --project config/test.tsconfig.json",
"test:cli": "npm run ci:download-web-uis && vitest run --bail 1 --config config/vitest.config.ts",
"commit": "cz",
"prepare": "test -d .git && husky install || true",
"release": "HUSKY=0 release-it --config config/.release-it.json",
"generate:readme": "oclif readme && sed -i 's@/src/commands/@/src/cli/commands/@g' README.md && sed -i 's@src/commands@src/cli/commands@g' README.md",
"generate:executable:tarballs:macos:x64": "npm run clean && oclif pack tarballs --no-xz --targets darwin-x64",
"generate:executable:tarballs:macos:arm64": "npm run clean && oclif pack tarballs --no-xz --targets darwin-arm64",
"generate:executable:tarballs:linux:arm64": "npm run clean && oclif pack tarballs --no-xz --targets linux-arm64",
"generate:executable:tarballs:windows": "npm run clean && oclif pack tarballs --no-xz --targets win32-x64,win32-x86",
"generate:executable:tarballs:linux:x64": "npm run clean && oclif pack tarballs --no-xz --targets linux-x64",
"generate:installer:windows": "npm run clean && oclif pack win --targets win32-x64",
"ci:rename-tarballs": "node --loader ts-node/esm ci-bin/rename-tarballs-installers.ts",
"ci:download-web-uis": "node --loader ts-node/esm ci-bin/download-web-uis.ts",
"ci:daemon:test-before-release": "node --loader ts-node/esm ci-bin/run-daemon-before-release.ts"
},
"files": [
"/bin",
"/dist",
"/npm-shrinkwrap.json",
"/oclif.manifest.json"
],
"bin": {
"bitsocial": "./bin/run"
},
"main": "./dist/index.js",
"oclif": {
"bin": "bitsocial",
"dirname": "bitsocial",
"commands": "./dist/cli/commands",
"topicSeparator": " ",
"plugins": [
"@oclif/plugin-help",
"@oclif/plugin-not-found"
],
"topics": {
"challenge": {
"description": "Manage challenge packages"
},
"community": {
"description": "Access and manage your communities"
}
},
"hooks": {
"init": [
"./dist/cli/hooks/init/version-hook"
],
"prerun": [
"./dist/cli/hooks/prerun/parse-dynamic-flags-hook"
]
}
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"ts-node": {
"esm": true,
"experimentalSpecifierResolution": "node"
},
"engines": {
"node": ">=22.0.0"
},
"devDependencies": {
"@commitlint/cli": "20.2.0",
"@commitlint/config-conventional": "20.3.1",
"@oclif/test": "4.1.15",
"@release-it/conventional-changelog": "10.0.1",
"@tsconfig/node20": "20.1.2",
"@types/decompress": "4.2.7",
"@types/express": "4.17.21",
"@types/node": "22.19.13",
"@types/prettier": "2.7.1",
"@types/tcp-port-used": "1.0.4",
"commitizen": "4.2.5",
"cz-conventional-changelog": "3.3.0",
"eslint": "8.27.0",
"eslint-config-oclif": "6.0.127",
"eslint-config-oclif-typescript": "3.1.14",
"husky": "8.0.2",
"nodemon": "2.0.20",
"oclif": "4.22.59",
"release-it": "19.2.3",
"shx": "0.3.4",
"sinon": "17.0.1",
"tempy": "1.0.1",
"vitest": "4.0.17",
"ts-node": "10.9.2",
"wait-on": "6.0.1"
},
"dependencies": {
"@multiformats/multiaddr": "13.0.1",
"@oclif/core": "4.8.0",
"@oclif/plugin-help": "6.2.36",
"@oclif/plugin-not-found": "3.2.73",
"@oclif/table": "0.5.1",
"@plebbit/plebbit-js": "https://github.com/plebbit/plebbit-js#10ed04e3866dd986a7f802bc9efd027f0e7d465b",
"dataobject-parser": "1.2.22",
"decompress": "4.2.1",
"env-paths": "2.2.1",
"exit-hook": "4.0.0",
"express": "4.19.2",
"kubo": "0.40.1",
"tcp-port-used": "1.0.2",
"tslib": "2.6.2",
"typescript": "5.9.3"
},
"overrides": {
"node-datachannel": "0.32.1",
"react-devtools-core": "6.1.5"
}
}