-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1.07 KB
/
package.json
File metadata and controls
39 lines (39 loc) · 1.07 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
{
"name": "members-visualization",
"version": "1.0.0",
"description": "组织数据可视化展示",
"main": "index.js",
"scripts": {
"docs:dev": "vitepress dev docs",
"docs:build": "cross-env NODE_ENV=production vitepress build docs",
"docs:preview": "vitepress preview docs",
"docs:serve": "vitepress serve docs",
"fetch-data": "python scripts/fetch_members/fetch_members.py",
"fetch-data:test": "python scripts/fetch_members/fetch_members.py --test",
"fetch-organization": "python scripts/fetch_organization/fetch_organization.py"
},
"keywords": [
"datawhale",
"visualization",
"members",
"vitepress",
"echarts"
],
"author": "Datawhale",
"license": "MIT",
"dependencies": {
"echarts": "^5.5.0",
"echarts-wordcloud": "2.1.0",
"modern-screenshot": "4.6.8",
"vitepress": "^1.6.0"
},
"repository": {
"type": "git",
"url": "https://github.com/datawhalechina/members-visualization.git"
},
"devDependencies": {
"cross-env": "10.0.0",
"dotenv": "17.2.2",
"puppeteer": "^23.0.0"
}
}