-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 2.14 KB
/
package.json
File metadata and controls
73 lines (73 loc) · 2.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
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
{
"name": "discord-prism",
"type": "module",
"version": "1.6.0",
"main": "dist/main.js",
"author": "shree krishna lamichhane",
"license": "MIT",
"publishConfig": {
"access": "public"
},
"files": [
"dist"
],
"preferGlobal": true,
"bin": "./dist/main.js",
"scripts": {
"start": "node dist/main.js",
"dev": "concurrently \"yarn watch-compile\" \"yarn watch-dev\"",
"watch-compile": "swc src -w --out-dir dist",
"watch-dev": "nodemon --watch \"dist/**/*\" -e js ./dist/main.js",
"build": "swc src -d dist",
"clean": "rm -rf dist",
"test": "cross-env NODE_OPTIONS=--experimental-vm-modules jest --detectOpenHandles",
"test:coverage": "yarn test -- --coverage",
"test:ci": "yarn test -- --colors --coverage --ci",
"lint": "eslint src",
"format": "prettier \"./**\" --write --ignore-unknown",
"format:check": "prettier \"./**\" --ignore-unknown --check",
"publish": "yarn clean && yarn build && npm publish",
"prepare": "husky install"
},
"dependencies": {
"axios": "^1.4.0",
"chalk": "^5.2.0",
"commander": "^10.0.1",
"dotenv": "^16.0.0",
"figlet": "^1.6.0",
"heic-convert": "^1.2.4",
"mime": "^3.0.0",
"zod": "^3.21.4"
},
"devDependencies": {
"@commitlint/cli": "^17.0.0",
"@commitlint/config-conventional": "^17.0.0",
"@jest/globals": "^28.0.0",
"@jest/types": "^28.0.0",
"@swc/cli": "^0.1.62",
"@swc/core": "^1.3.61",
"@types/figlet": "^1.5.6",
"@types/heic-convert": "^1.2.0",
"@types/jest": "^27.4.1",
"@types/mime": "^3.0.1",
"@types/node": "^18.0.0",
"@types/supertest": "^2.0.12",
"@typescript-eslint/eslint-plugin": "^5.17.0",
"@typescript-eslint/parser": "^5.17.0",
"concurrently": "^8.0.1",
"cross-env": "^7.0.3",
"eslint": "^8.12.0",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-tsdoc": "^0.2.14",
"husky": "^8.0.1",
"jest": "^27.5.1",
"lint-staged": "^13.0.0",
"nodemon": "^2.0.15",
"prettier": "^2.6.1",
"supertest": "^6.2.2",
"ts-jest": "^27.1.4",
"ts-node": "^10.7.0",
"typescript": "^4.6.3"
}
}