-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.15 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
{
"name": "@3-shake/twitter-api",
"author": "locona ([email protected])",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"version": "0.3.0",
"scripts": {
"build:types": "NODE_ENV=production tsc",
"build:types:watch": "NODE_ENV=production tsc --watch",
"build:js": "NODE_ENV=production node ./esbuild/build.js",
"build:js:watch": "NODE_ENV=production node ./esbuild/watch.js",
"build": "yarn build:types && yarn build:js",
"dev": "ts-node ./lib/index.js",
"release": "shipjs prepare"
},
"license": "ISC",
"repository": {
"type": "git",
"url": "git+https://github.com/3-shake/twitter-api.git"
},
"publishConfig": {
"registry": "https://npm.pkg.github.com/"
},
"files": [
"lib"
],
"typings": "./lib/index.d.ts",
"devDependencies": {
"@types/node-fetch": "2.5.10",
"@types/request": "2.48.5",
"dotenv": "8.6.0",
"esbuild": "0.11.20",
"prettier": "2.3.1",
"shipjs": "0.23.3",
"ts-node": "9.1.1",
"typescript": "4.2.4"
},
"dependencies": {
"node-fetch": "^2.6.1",
"oauth-1.0a": "^2.2.6",
"querystring": "^0.2.1"
},
"volta": {
"node": "14.17.1"
}
}