-
Notifications
You must be signed in to change notification settings - Fork 87
/
package.json
74 lines (74 loc) · 2.06 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
69
70
71
72
73
74
{
"name": "agent-twitter-client",
"description": "A twitter client for agents",
"keywords": [],
"version": "0.0.16",
"main": "dist/default/cjs/index.js",
"types": "./dist/types/index.d.ts",
"exports": {
"types": "./dist/types/index.d.ts",
"node": {
"import": "./dist/node/esm/index.mjs",
"require": "./dist/node/cjs/index.cjs"
},
"default": {
"import": "./dist/default/esm/index.mjs",
"require": "./dist/default/cjs/index.js"
}
},
"author": "ai16z",
"license": "MIT",
"scripts": {
"build": "rimraf dist && rollup -c",
"docs:generate": "typedoc --options typedoc.json",
"docs:deploy": "npm run docs:generate && gh-pages -d docs",
"format": "prettier --write src/**/*.ts",
"test": "jest"
},
"dependencies": {
"@sinclair/typebox": "^0.32.20",
"headers-polyfill": "^3.1.2",
"json-stable-stringify": "^1.0.2",
"node-fetch": "^3.3.2",
"otpauth": "^9.2.2",
"set-cookie-parser": "^2.6.0",
"tough-cookie": "^4.1.2",
"tslib": "^2.5.2",
"twitter-api-v2": "^1.18.2",
"undici": "^7.1.1"
},
"devDependencies": {
"@commitlint/cli": "^17.6.3",
"@commitlint/config-conventional": "^17.6.3",
"@tsconfig/node16": "^16.1.3",
"@types/jest": "^29.5.1",
"@types/json-stable-stringify": "^1.0.34",
"@types/node": "^22.9.1",
"@types/set-cookie-parser": "^2.4.2",
"@types/tough-cookie": "^4.0.2",
"@typescript-eslint/eslint-plugin": "^5.59.7",
"@typescript-eslint/parser": "^5.59.7",
"dotenv": "^16.4.5",
"esbuild": "^0.21.5",
"eslint": "^8.41.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-prettier": "^4.2.1",
"gh-pages": "^5.0.0",
"jest": "^29.7.0",
"lint-staged": "^13.2.2",
"prettier": "^2.8.8",
"rimraf": "^5.0.7",
"rollup": "^4.18.0",
"rollup-plugin-dts": "^6.1.1",
"rollup-plugin-esbuild": "^6.1.1",
"ts-jest": "^29.1.0",
"typedoc": "^0.24.7",
"typescript": "^5.0.4"
},
"lint-staged": {
"*.{js,ts}": [
"eslint --cache --fix",
"prettier --write"
]
}
}