-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 1.58 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
{
"name": "threads-ts",
"version": "1.3.0",
"description": "Strongly typed, full-featured, light, versatile Threads API client.",
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"types": "dist/esm/index.d.ts",
"keywords": [
"threads",
"sdk",
"api",
"threads sdk",
"typed",
"types",
"v2",
"v1.1"
],
"scripts": {
"build": "npm run build:cjs && npm run build:esm",
"build:cjs": "tsc -b tsconfig.cjs.json",
"build:esm": "tsc -b tsconfig.esm.json",
"build-doc": "typedoc src/index.ts --out tsdocs",
"lint": "eslint --ext \".ts\" --ignore-path .gitignore .",
"test": "npm run mocha 'test/**/*.test.ts'",
"prepublish": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/solojungle/threads-ts.git"
},
"homepage": "https://github.com/solojungle/threads-ts#readme",
"author": "Ali Awari (https://x.com/aliawarii)",
"license": "Apache-2.0",
"files": [
"dist"
],
"dependencies": {
"axios": "^1.7.7"
},
"devDependencies": {
"@types/chai": "^4.2.16",
"@types/mocha": "^10.0.1",
"@types/node": "^18.11.17",
"@typescript-eslint/eslint-plugin": "^5.47.0",
"@typescript-eslint/parser": "^5.47.0",
"chai": "^4.3.4",
"dotenv": "^16.0.3",
"eslint": "^8.30.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"mocha": "^10.0.0",
"sinon": "^19.0.2",
"ts-node": "^10.9.1",
"typedoc": "^0.23.23",
"typescript": "^4.2.4"
},
"bugs": {
"url": "https://github.com/solojungle/threads-ts/issues"
}
}