-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.71 KB
/
package.json
File metadata and controls
66 lines (66 loc) · 1.71 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
{
"name": "@joinmonolith/cli",
"version": "0.1.3",
"description": "Official CLI for the Monolith API (api.joinmonolith.com)",
"type": "module",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
}
},
"bin": {
"monolith": "./dist/bin/monolith.js"
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"engines": {
"node": ">=18"
},
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "rm -rf dist && bun run build:js && bun run build:types && chmod +x dist/bin/monolith.js",
"build:js": "bun build ./index.ts --outdir=dist --target=node --format=esm --packages=external && bun build ./bin/monolith.ts --outdir=dist/bin --target=node --format=esm --packages=external",
"build:types": "tsc -p tsconfig.build.json",
"test": "bun test",
"start": "bun bin/monolith.ts",
"prepublishOnly": "bun run test && bun run build"
},
"keywords": [
"monolith",
"joinmonolith",
"cli",
"api",
"fingerprint",
"sha256"
],
"license": "MIT",
"author": "Monolith",
"homepage": "https://github.com/stabilityprotocol/joinmonolith-cli#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/stabilityprotocol/joinmonolith-cli.git"
},
"bugs": {
"url": "https://github.com/stabilityprotocol/joinmonolith-cli/issues"
},
"devDependencies": {
"@types/bun": "latest",
"@types/node": "^25.6.0",
"typescript": "^5"
},
"dependencies": {
"@stabilityprotocol.com/phash": "^1.0.0",
"audio-decode": "^3.10.1",
"file-type": "^22.0.1",
"rusty-chromaprint-wasm": "^0.1.5",
"sharp": "^0.34.5"
}
}