-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
68 lines (66 loc) · 2.03 KB
/
package.json
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": "nscore",
"version": "1.1.32",
"description": "This is an informative open source discord app written by nsgpriyanshu",
"main": "dist/index.js",
"types": "types/index.d.ts",
"scripts": {
"test": "npx jest",
"test:coverage": "npx jest --coverage",
"clean": "rimraf dist types",
"build": "npx tsc",
"format:check": "npx prettier . --check",
"format:write": "npx prettier . --write",
"deploy": "node dist/utils/deployCommands.js",
"start": "node dist/index.js",
"execute": "npm run clean && npm run build && npm run format:write && npm run start",
"cleanStart": "npm run clean && npm run build && npm run start",
"noCleanStart": "npm run build && npm run start",
"lint": "eslint 'src/**/*.{ts,tsx}'",
"lint:fix": "eslint 'src/**/*.{ts,tsx}' --fix",
"release": "semantic-release"
},
"keywords": [
"nsCore",
"discord"
],
"author": "nsgpriyanshu",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/nsgpriyanshu/nscore",
"homepage": "https://github.com/nsgpriyanshu/nscore#readme",
"bugs": {
"url": "https://github.com/nsgpriyanshu/nscore/issues"
}
},
"dependencies": {
"@types/jest": "^29.5.12",
"@types/node": "^22.5.2",
"@types/ws": "^8.5.10",
"autoprefixer": "^10.4.20",
"axios": "^1.7.7",
"discord.js": "^14.15.3",
"dotenv": "^16.4.5",
"greetify": "^2.0.1",
"jest": "^29.7.0",
"node-fetch": "^3.3.2",
"nstypocolors": "^1.3.1",
"ts-jest": "^29.2.4",
"ts-node": "^10.9.2",
"typescript": "^5.5.2"
},
"devDependencies": {
"@commitlint/cli": "^19.4.1",
"@commitlint/config-conventional": "^19.2.2",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/commit-analyzer": "^13.0.0",
"@semantic-release/git": "^10.0.1",
"@semantic-release/release-notes-generator": "^14.0.1",
"@types/node-fetch": "^2.6.11",
"eslint": "^9.9.1",
"eslint-plugin-prettier": "^5.1.3",
"prettier": "^3.3.2",
"semantic-release": "^24.1.0"
}
}