-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 847 Bytes
/
Copy pathpackage.json
File metadata and controls
41 lines (41 loc) · 847 Bytes
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
{
"name": "xhs-js",
"version": "0.0.1",
"description": "基于小红书web端进行的API封装,Javascript版本",
"main": "dist/index.cjs.js",
"module": "dist/index.esm.js",
"exports": {
".": {
"require": "./dist/index.cjs.js",
"import": "./dist/index.esm.js"
}
},
"files": [
"dist"
],
"scripts": {
"build": "rollup -c",
"prepublishOnly": "npm run build",
"test": "jest",
"prepare": "husky install"
},
"keywords": [
"xhs",
"xhs-api",
"crawl"
],
"author": "",
"license": "MIT",
"dependencies": {
"axios": "^1.7.7",
"jsdom": "^25.0.0",
"querystring": "^0.2.1"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^26.0.1",
"@rollup/plugin-node-resolve": "^15.2.3",
"husky": "^9.1.6",
"jest": "^29.7.0",
"rollup": "^4.21.2"
}
}