-
-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 1.6 KB
/
package.json
File metadata and controls
71 lines (71 loc) · 1.6 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
{
"name": "@skyra/http-framework",
"version": "1.1.0",
"description": "The framework for ArchId Network's HTTP-only bots",
"author": "@skyra",
"license": "Apache-2.0",
"main": "dist/index.js",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"type": "module",
"exports": {
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
},
"sideEffects": false,
"scripts": {
"test": "vitest run",
"build": "tsup",
"watch": "tsup --watch",
"typecheck": "tsc -p tsconfig.eslint.json",
"lint": "eslint src --ext ts --fix -c ../../package.json",
"prepack": "yarn build",
"bump": "cliff-jumper",
"check-update": "cliff-jumper --dry-run"
},
"dependencies": {
"@discordjs/builders": "^1.6.4",
"@discordjs/collection": "^1.5.2",
"@discordjs/rest": "^2.0.0",
"@discordjs/util": "^1.0.0",
"@sapphire/pieces": "^3.7.0",
"@sapphire/result": "^2.6.4",
"@sapphire/utilities": "^3.13.0",
"@vladfrangu/async_event_emitter": "^2.2.2",
"discord-api-types": "^0.37.54"
},
"devDependencies": {
"@favware/cliff-jumper": "^2.1.1",
"@vitest/coverage-v8": "^0.34.1",
"tsup": "^7.2.0",
"typescript": "^5.1.6",
"vitest": "^0.34.1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/skyra-project/archid-components.git",
"directory": "packages/http-framework"
},
"files": [
"dist/"
],
"engines": {
"node": ">=16.17.0",
"npm": ">=8.0.0"
},
"keywords": [
"discord",
"api",
"http",
"skyra",
"typescript",
"ts",
"yarn"
],
"bugs": {
"url": "https://github.com/skyra-project/archid-components/issues"
},
"publishConfig": {
"access": "public"
}
}