-
-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpackage.json
68 lines (68 loc) · 1.82 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
{
"name": "twitter.js",
"version": "0.14.0",
"author": "Shubham Parihar <[email protected]>",
"description": "An object-oriented Node.js and TypeScript library for interacting with Twitter API v2",
"main": "./dist/index.js",
"types": "./dist/types/index.d.ts",
"scripts": {
"build": "tsc -p tsconfig.json && tsc -p tsconfig.declaration.json",
"build:dev": "tsc -w",
"doc": "typedoc --json docs/typedoc-out.json src/index.ts && node scripts/DocsBuilder.mjs",
"test": "vitest",
"prepare": "husky install",
"lint:check": "eslint . --ext .js,.ts",
"lint:fix": "eslint . --ext .js,.ts --fix",
"format:check": "prettier --check .",
"format:fix": "prettier --write .",
"changelog": "git-cliff --output CHANGELOG.md",
"prepublishOnly": "npm run build"
},
"dependencies": {
"@discordjs/collection": "^1.1.0",
"@sapphire/async-queue": "^1.5.0",
"oauth-1.0a": "^2.2.6",
"twitter-types": "^0.26.0",
"undici": "^5.10.0"
},
"devDependencies": {
"@commitlint/cli": "^17.1.2",
"@commitlint/config-angular": "^17.1.0",
"@discordjs/ts-docgen": "^0.4.1",
"@types/node": "^18.7.23",
"@typescript-eslint/eslint-plugin": "^5.38.1",
"@typescript-eslint/parser": "^5.38.1",
"eslint": "^8.24.0",
"eslint-config-prettier": "^8.5.0",
"husky": "^8.0.1",
"lint-staged": "^13.0.3",
"prettier": "^2.7.1",
"typedoc": "^0.23.15",
"typescript": "^4.8.4",
"vitest": "^0.23.4"
},
"files": [
"/dist"
],
"engines": {
"node": ">=16.0.0",
"npm": ">=7.0.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/twitterjs/twitter.js.git"
},
"bugs": {
"url": "https://github.com/twitterjs/twitter.js/issues"
},
"license": "Apache-2.0",
"homepage": "https://github.com/twitterjs/twitter.js#readme",
"keywords": [
"twitter.js",
"twitter",
"tjs",
"typescript",
"bots",
"api"
]
}