-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.14 KB
/
package.json
File metadata and controls
40 lines (40 loc) · 1.14 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
{
"name": "zxbot",
"version": "1.0.0",
"main": "dist/index.js",
"type": "module",
"scripts": {
"dev": "tsx src/index.ts",
"build": "tsc -p tsconfig.json",
"build:wasm": "cd bitphase && pnpm install --prod && bash build-wasm.sh",
"btp-to-wav": "cd bitphase && ../node_modules/.bin/tsx cli/btp-to-wav.ts",
"start": "node dist/index.js",
"lint": "eslint . --ext .ts,.js",
"lint:fix": "eslint . --ext .ts,.js --fix",
"format": "prettier --check .",
"format:write": "prettier --write .",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [],
"author": "",
"license": "ISC",
"description": "",
"dependencies": {
"dependencies": "^0.0.1",
"discord.js": "^14.15.3",
"dotenv": "^16.4.5",
"music-metadata": "^8.3.0",
"node-fetch": "^3.3.2"
},
"devDependencies": {
"@types/node": "^22.4.1",
"@typescript-eslint/eslint-plugin": "^8.3.0",
"@typescript-eslint/parser": "^8.3.0",
"eslint": "^9.9.0",
"eslint-config-prettier": "^9.1.0",
"prettier": "^3.3.3",
"tsx": "^4.15.7",
"typescript": "^5.5.4",
"typescript-eslint": "^8.39.0"
}
}