-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
59 lines (59 loc) · 1.54 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
{
"name": "@oceanicjs/builders",
"version": "1.1.11",
"description": "Helpful builders for various Discord related things.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"module": "./esm.mjs",
"exports": {
".": {
"types": "./dist/index.d.ts",
"bun": "./dist/index.js",
"require": "./dist/index.js",
"import": "./esm.mjs"
}
},
"scripts": {
"prepublishOnly": "rm -rf build && tsc && echo Build Finished",
"lint": "eslint lib --ext .ts",
"lint:fix": "eslint lib --ext .ts --fix"
},
"repository": {
"type": "git",
"url": "git+https://github.com/OceanicJS/Builders.git"
},
"keywords": [
"oceanic.js",
"components",
"applicaion-commands",
"embeds",
"builder",
"oceanic-builder",
"discord"
],
"author": "Donovan Daniels <hewwo@yiff.rocks>",
"license": "MIT",
"bugs": {
"url": "https://github.com/OceanicJS/Builders/issues"
},
"homepage": "https://github.com/OceanicJS/Builders#readme",
"devDependencies": {
"@types/node": "^20.3.1",
"@typescript-eslint/eslint-plugin": "^5.60.0",
"@typescript-eslint/parser": "^5.60.0",
"eslint": "^8.43.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-import-newlines": "^1.3.1",
"eslint-plugin-jsdoc": "^46.2.6",
"eslint-plugin-json": "^3.1.0",
"eslint-plugin-prefer-arrow": "^1.2.3",
"eslint-plugin-unused-imports": "^2.0.0",
"typescript": "^5.1.3"
},
"publishConfig": {
"access": "public"
},
"peerDependencies": {
"oceanic.js": ">=1.10.0"
}
}