-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
38 lines (38 loc) · 950 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": "@codingsnack/leetcode-api",
"version": "0.0.5",
"description": "leetcode api",
"main": "lib/index.js",
"files": [
"lib/**/*"
],
"scripts": {
"tsc": "tsc",
"develop": "tsc && yalc publish",
"build-docs": "rimraf docs && typedoc --options typedoc.json",
"deploy": "npm run build-docs && gh-pages -d docs"
},
"repository": {
"type": "git",
"url": "git+https://github.com/codingsnack/leetcode-api.git"
},
"keywords": [],
"author": "codingsnack",
"license": "ISC",
"bugs": {
"url": "https://github.com/codingsnack/leetcode-api/issues"
},
"homepage": "https://github.com/codingsnack/leetcode-api#readme",
"devDependencies": {
"@types/node-fetch": "^3.0.3",
"gh-pages": "^3.2.3",
"rimraf": "^3.0.2",
"typedoc": "^0.22.10",
"typescript": "^4.5.4"
},
"dependencies": {
"delay": "^5.0.0",
"graphql-request": "^3.7.0",
"node-fetch": "^2.6.1"
}
}