@discordjs/builders 0.9.0 → 0.13.0-dev.1644067366.5f4b44d

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,98 +1,88 @@
1
1
  {
2
- "name": "@discordjs/builders",
3
- "version": "0.9.0",
4
- "description": "A set of builders that you can use when creating your bot",
5
- "scripts": {
6
- "pretest": "npm run build",
7
- "test": "jest --pass-with-no-tests",
8
- "test:ci": "jest --no-stack-trace --verbose --pass-with-no-tests",
9
- "prebuild": "npm run lint",
10
- "build": "tsup",
11
- "lint": "eslint src --ext mjs,js,ts",
12
- "lint:fix": "eslint src --ext mjs,js,ts --fix",
13
- "format": "prettier --write **/*.{ts,js,json,yml,yaml}",
14
- "prepare": "is-ci || husky install",
15
- "docs": "typedoc --json docs/typedoc-out.json src/index.ts && node scripts/docs.mjs",
16
- "prepublishOnly": "npm run lint && npm run test",
17
- "release": "standard-version --preset angular"
18
- },
19
- "main": "./dist/index.js",
20
- "module": "./dist/index.mjs",
21
- "typings": "./dist/index.d.ts",
22
- "exports": {
23
- "import": "./dist/index.mjs",
24
- "require": "./dist/index.js"
25
- },
26
- "directories": {
27
- "lib": "src",
28
- "test": "__tests__"
29
- },
30
- "files": [
31
- "dist"
32
- ],
33
- "contributors": [
34
- "Vlad Frangu <kingdgrizzle@gmail.com>",
35
- "Crawl <icrawltogo@gmail.com>",
36
- "Amish Shah <amishshah.2k@gmail.com>",
37
- "SpaceEEC <spaceeec@yahoo.com>"
38
- ],
39
- "license": "Apache-2.0",
40
- "keywords": [
41
- "discord",
42
- "api",
43
- "bot",
44
- "client",
45
- "node",
46
- "discordapp",
47
- "discordjs"
48
- ],
49
- "repository": {
50
- "type": "git",
51
- "url": "https://github.com/discordjs/builders.git"
52
- },
53
- "bugs": {
54
- "url": "https://github.com/discordjs/builders/issues"
55
- },
56
- "homepage": "https://github.com/discordjs/builders",
57
- "dependencies": {
58
- "@sindresorhus/is": "^4.2.0",
59
- "discord-api-types": "^0.24.0",
60
- "ts-mixer": "^6.0.0",
61
- "tslib": "^2.3.1",
62
- "zod": "^3.11.6"
63
- },
64
- "devDependencies": {
65
- "@babel/core": "^7.15.8",
66
- "@babel/plugin-proposal-decorators": "^7.15.8",
67
- "@babel/preset-env": "^7.15.8",
68
- "@babel/preset-typescript": "^7.15.0",
69
- "@commitlint/cli": "^13.2.1",
70
- "@commitlint/config-angular": "^13.2.0",
71
- "@discordjs/ts-docgen": "^0.3.2",
72
- "@types/jest": "^27.0.2",
73
- "@types/node": "^16.11.6",
74
- "@typescript-eslint/eslint-plugin": "^5.2.0",
75
- "@typescript-eslint/parser": "^5.2.0",
76
- "babel-plugin-transform-typescript-metadata": "^0.3.2",
77
- "eslint": "^8.1.0",
78
- "eslint-config-marine": "^9.0.6",
79
- "eslint-config-prettier": "^8.3.0",
80
- "eslint-plugin-prettier": "^4.0.0",
81
- "husky": "^7.0.4",
82
- "is-ci": "^3.0.1",
83
- "jest": "^27.3.1",
84
- "lint-staged": "^11.2.6",
85
- "prettier": "^2.4.1",
86
- "standard-version": "^9.3.2",
87
- "tsup": "^5.5.0",
88
- "typedoc": "^0.22.7",
89
- "typescript": "^4.4.4"
90
- },
91
- "engines": {
92
- "node": ">=16.0.0",
93
- "npm": ">=7.0.0"
94
- },
95
- "publishConfig": {
96
- "access": "public"
97
- }
98
- }
2
+ "name": "@discordjs/builders",
3
+ "version": "0.13.0-dev.1644067366.5f4b44d",
4
+ "description": "A set of builders that you can use when creating your bot",
5
+ "scripts": {
6
+ "build": "tsup",
7
+ "test": "jest --pass-with-no-tests",
8
+ "lint": "prettier --check . && eslint src __tests__ --ext mjs,js,ts",
9
+ "format": "prettier --write . && eslint src __tests__ --ext mjs,js,ts --fix",
10
+ "docs": "typedoc --json docs/typedoc-out.json src/index.ts && node scripts/docs.mjs",
11
+ "prepublishOnly": "yarn build && yarn lint && yarn test",
12
+ "changelog": "git cliff --prepend ./CHANGELOG.md -u -c ./cliff.toml -r ../../ --include-path 'packages/builders/*'"
13
+ },
14
+ "main": "./dist/index.js",
15
+ "module": "./dist/index.mjs",
16
+ "types": "./dist/index.d.ts",
17
+ "exports": {
18
+ "import": "./dist/index.mjs",
19
+ "require": "./dist/index.js"
20
+ },
21
+ "directories": {
22
+ "lib": "src",
23
+ "test": "__tests__"
24
+ },
25
+ "files": [
26
+ "dist"
27
+ ],
28
+ "contributors": [
29
+ "Vlad Frangu <kingdgrizzle@gmail.com>",
30
+ "Crawl <icrawltogo@gmail.com>",
31
+ "Amish Shah <amishshah.2k@gmail.com>",
32
+ "SpaceEEC <spaceeec@yahoo.com>",
33
+ "Antonio Roman <kyradiscord@gmail.com>"
34
+ ],
35
+ "license": "Apache-2.0",
36
+ "keywords": [
37
+ "discord",
38
+ "api",
39
+ "bot",
40
+ "client",
41
+ "node",
42
+ "discordapp",
43
+ "discordjs"
44
+ ],
45
+ "repository": {
46
+ "type": "git",
47
+ "url": "https://github.com/discordjs/discord.js.git"
48
+ },
49
+ "bugs": {
50
+ "url": "https://github.com/discordjs/discord.js/issues"
51
+ },
52
+ "homepage": "https://discord.js.org",
53
+ "dependencies": {
54
+ "@sindresorhus/is": "^4.4.0",
55
+ "discord-api-types": "^0.26.1",
56
+ "ts-mixer": "^6.0.0",
57
+ "tslib": "^2.3.1",
58
+ "zod": "^3.11.6"
59
+ },
60
+ "devDependencies": {
61
+ "@babel/core": "^7.17.0",
62
+ "@babel/plugin-proposal-decorators": "^7.17.0",
63
+ "@babel/preset-env": "^7.16.11",
64
+ "@babel/preset-typescript": "^7.16.5",
65
+ "@discordjs/ts-docgen": "^0.3.4",
66
+ "@types/jest": "^27.0.3",
67
+ "@types/node": "^16.11.6",
68
+ "@typescript-eslint/eslint-plugin": "^5.10.2",
69
+ "@typescript-eslint/parser": "^5.10.2",
70
+ "babel-plugin-transform-typescript-metadata": "^0.3.2",
71
+ "eslint": "^8.8.0",
72
+ "eslint-config-marine": "^9.3.2",
73
+ "eslint-config-prettier": "^8.3.0",
74
+ "eslint-plugin-prettier": "^4.0.0",
75
+ "jest": "^27.4.7",
76
+ "prettier": "^2.5.1",
77
+ "tsup": "^5.11.13",
78
+ "typedoc": "^0.22.11",
79
+ "typescript": "^4.5.5"
80
+ },
81
+ "engines": {
82
+ "node": ">=16.9.0"
83
+ },
84
+ "publishConfig": {
85
+ "access": "public"
86
+ },
87
+ "stableVersion": "0.13.0-dev"
88
+ }