-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 733 Bytes
/
Copy pathpackage.json
File metadata and controls
39 lines (39 loc) · 733 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
{
"name": "xhs",
"version": "1.0.0",
"description": "",
"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"
},
"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",
"jest": "^29.7.0",
"rollup": "^4.21.2"
}
}