-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 849 Bytes
/
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
{
"name": "threads-graph-api",
"repository": "github:spoolappio/threads-graph-api",
"version": "0.1.0",
"description": "A library to interface with the official Instagram Threads API",
"main": "dist/src/index.js",
"scripts": {
"build": "tsc && tsc-alias",
"demo": "tsx watch demo/index.ts",
"test": "jest"
},
"keywords": [
"instagram",
"threads",
"graph",
"api",
"sdk",
"lib",
"library",
"official"
],
"author": "Tony Peng <[email protected]>",
"license": "MIT",
"devDependencies": {
"@types/express": "^4.17.21",
"eslint": "^9.3.0",
"eslint-config-prettier": "^9.1.0",
"express": "^4.19.2",
"prettier": "^3.2.5",
"ts-node": "^10.9.2",
"tsc-alias": "^1.8.10",
"tsx": "^4.11.0",
"typescript": "^5.4.5"
},
"dependencies": {
"zod": "^3.23.8"
}
}