-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
75 lines (75 loc) · 1.94 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
67
68
69
70
71
72
73
74
75
{
"name": "slash-up",
"version": "1.4.2",
"description": "CLI for viewing and syncing Discord commands with slash-create",
"author": {
"name": "Snazzah",
"email": "me@snazzah.com",
"url": "https://snazzah.com/"
},
"license": "MIT",
"main": "./lib/index.js",
"types": "./lib/index.d.ts",
"repository": "https://github.com/Snazzah/slash-up",
"bugs": {
"url": "https://github.com/Snazzah/slash-up/issues"
},
"keywords": [
"api",
"discord",
"discordapp",
"slash-create",
"slash-command",
"slash-commands",
"discord-interactions",
"cli"
],
"scripts": {
"build": "rimraf lib && tsc",
"changelog": "tsx scripts/changelog",
"lint": "eslint --ext .ts ./src",
"lint:fix": "eslint --ext .ts ./src --fix",
"gpr": "tsx scripts/gpr",
"prepare": "shx test -d ./lib || npm run build",
"prepublishOnly": "(shx test -d ./lib || (echo \"lib folder does not exist\" && exit 1)) && npm run lint:fix"
},
"funding": {
"url": "https://github.com/sponsors/Snazzah"
},
"bin": {
"slash-up": "./lib/bin.js"
},
"engines": {
"node": ">=14"
},
"dependencies": {
"@esbuild-kit/cjs-loader": "^2.4.2",
"ansi-colors": "^4.1.3",
"common-tags": "^1.8.2",
"cross-spawn": "^7.0.3",
"degit": "^2.8.4",
"dotenv": "^16.0.3",
"enquirer": "^2.3.6",
"find-up": "5.0.0",
"log-symbols": "4.1.0",
"slash-create": "^6.0.1",
"yargs": "^17.7.1"
},
"devDependencies": {
"@types/common-tags": "^1.8.1",
"@types/cross-spawn": "^6.0.2",
"@types/degit": "^2.8.3",
"@types/node": "^18.15.0",
"@types/yargs": "^17.0.22",
"@typescript-eslint/eslint-plugin": "^6.9.1",
"@typescript-eslint/parser": "^6.9.1",
"eslint": "^8.53.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-prettier": "^5.0.1",
"prettier": "^3.0.3",
"rimraf": "^4.4.0",
"shx": "^0.3.4",
"tsx": "^3.12.3",
"typescript": "^5.0.2"
}
}