forked from Dougley/slshx
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
60 lines (60 loc) · 1.68 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
{
"name": "slshx-modified",
"version": "0.3.0",
"description": "Strongly-typed Discord commands on Cloudflare Workers",
"type": "module",
"exports": "./dist/src/index.js",
"types": "./dist/src/index.d.ts",
"files": [
"dist/src"
],
"scripts": {
"clean": "rimraf './dist' './dist-types'",
"build": "node scripts/build.mjs",
"build:types": "tsc && node scripts/types.mjs",
"watch": "node scripts/build.mjs watch",
"test": "npm run build && ava",
"lint": "eslint \"src/**/*.ts\" \"scripts/**/*.{js,mjs}\" \"types/*.ts\"",
"lint:fix": "npm run lint -- --fix",
"prepublishOnly": "npm run clean && npm run lint && npm run build && npm run build:types"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mrbbot/slshx.git"
},
"keywords": [
"discord",
"slash",
"commands",
"cloudflare",
"workers"
],
"author": "MrBBot",
"license": "MIT",
"bugs": {
"url": "https://github.com/mrbbot/slshx/issues"
},
"homepage": "https://github.com/mrbbot/slshx#readme",
"devDependencies": {
"@ava/typescript": "^4.0.0",
"@cloudflare/workers-types": "^3.19.0",
"@microsoft/api-extractor": "^7.35.4",
"@types/node": "^20.3.1",
"@typescript-eslint/eslint-plugin": "^5.59.11",
"@typescript-eslint/parser": "^5.59.11",
"ava": "^5.3.0",
"esbuild": "^0.13.15",
"eslint": "^8.42.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-prettier": "^4.2.1",
"miniflare": "^2.14.0",
"prettier": "^2.8.8",
"rimraf": "^3.0.2",
"typescript": "^4.9.5"
},
"dependencies": {
"discord-api-types": "^0.37.43",
"tweetnacl": "^1.0.3"
}
}