-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
49 lines (49 loc) · 1.3 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
{
"name": "@crossmint/twitter-mint-bot",
"version": "0.0.1",
"license": "MIT",
"type": "module",
"sideEffects": false,
"main": "lib/index.cjs",
"module": "lib/index.js",
"types": "lib/index.d.ts",
"exports": {
".": {
"import": "./lib/index.js",
"require": "./lib/index.cjs"
}
},
"files": [
"lib",
"src",
"LICENSE"
],
"scripts": {
"lint": "eslint src/ --ext .js,.ts",
"build": "yarn clean && tsup src/index.ts --format esm,cjs --outDir ./lib --minify --dts",
"clean": "shx rm -rf lib",
"dev": "nodemon",
"start": "node lib/index.js"
},
"dependencies": {
"axios": "^0.27.2",
"dotenv": "^16.0.1",
"exponential-backoff": "^3.1.0",
"get-emails": "^4.0.0",
"node-fetch": "^3.2.8",
"twitter-api-sdk": "^1.1.0",
"twitter-api-v2": "^1.12.3",
"uuidv4": "^6.2.13"
},
"devDependencies": {
"@types/node": "^18.0.4",
"@typescript-eslint/eslint-plugin": "^5.30.6",
"@typescript-eslint/parser": "^5.30.6",
"eslint": "^8.19.0",
"nodemon": "^2.0.19",
"shx": "^0.3.4",
"ts-node": "^10.9.1",
"tsup": "^6.1.3",
"typescript": "^4.7.4"
}
}