-
-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.53 KB
/
Copy pathpackage.json
File metadata and controls
63 lines (63 loc) · 1.53 KB
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
61
62
63
{
"name": "fanfou-sdk",
"version": "7.0.0-beta.1",
"description": "Fanfou SDK for Node.js",
"type": "module",
"exports": "./distribution/source/index.js",
"types": "distribution/source",
"files": [
"distribution/source"
],
"dependencies": {
"camelcase-keys": "^10.0.2",
"decamelize-keys": "^2.0.1",
"form-data": "^4.0.6",
"he": "^1.2.0",
"hmacsha1": "^1.0.0",
"ky": "^2.0.2",
"oauth-1.0a": "^2.2.6",
"query-string": "^9.4.1"
},
"devDependencies": {
"@ava/typescript": "^7.0.0",
"@sindresorhus/tsconfig": "^8.1.0",
"@types/express": "^5.0.6",
"@types/he": "^1.2.3",
"@types/node": "^26.1.1",
"@types/test-listen": "^1.1.2",
"ava": "^8.0.1",
"c8": "^11.0.0",
"del-cli": "^7.0.0",
"express": "^5.2.1",
"gh-pages": "^6.3.0",
"test-listen": "^1.1.0",
"ts-node": "^10.9.2",
"typedoc": "^0.28.20",
"typescript": "npm:@typescript/typescript6@^6.0.2",
"typescript-7": "npm:typescript@^7.0.1-rc",
"xo": "^4.0.0"
},
"engines": {
"node": ">=22"
},
"scripts": {
"build": "del-cli distribution && tsc",
"pretest": "npm run build",
"test": "xo && c8 ava",
"typedoc": "npm run build && del-cli docs && typedoc --gitRevision main source/index.ts",
"deploy:doc": "gh-pages -d docs"
},
"repository": {
"type": "git",
"url": "git+https://github.com/fanfoujs/fanfou-sdk-node.git"
},
"keywords": [
"fanfou"
],
"author": "LitoMore",
"license": "MIT",
"bugs": {
"url": "https://github.com/fanfoujs/fanfou-sdk-node/issues"
},
"homepage": "https://github.com/fanfoujs/fanfou-sdk-node#readme"
}