-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 1.64 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 1.64 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
64
65
66
67
68
{
"name": "@manuelm02/prism-cli",
"version": "1.0.2",
"description": "Prism - 可视化网页数据采集工具,为 OpenCLI 提供友好的图形界面",
"main": "dist/cli/index.js",
"bin": {
"prism": "dist/cli/index.js"
},
"files": [
"dist",
"README.md"
],
"scripts": {
"dev:server": "npx tsx src/server/index.ts",
"dev:web": "vite",
"dev": "concurrently \"npm run dev:server\" \"npm run dev:web\"",
"build:web": "vue-tsc --noEmit && vite build",
"build:bundle": "node scripts/build.mjs",
"build": "npm run build:web && npm run build:bundle",
"preview": "vite preview",
"start": "node dist/cli/index.js",
"prepublishOnly": "npm run build"
},
"keywords": [
"opencli",
"web-scraper",
"data-extraction",
"bilibili",
"xiaohongshu",
"taobao",
"ctrip"
],
"author": "",
"license": "MIT",
"type": "module",
"engines": {
"node": ">=18.0.0"
},
"dependencies": {
"cors": "^2.8.6",
"express": "^5.2.1",
"open": "^11.0.0",
"yaml": "^2.8.3"
},
"devDependencies": {
"@types/cors": "^2.8.19",
"@types/express": "^5.0.6",
"@types/node": "^25.6.0",
"@vitejs/plugin-vue": "^6.0.6",
"ant-design-vue": "^4.2.6",
"concurrently": "^9.1.2",
"esbuild": "^0.28.0",
"ts-node": "^10.9.2",
"tsx": "^4.21.0",
"typescript": "^6.0.3",
"vite": "^8.0.10",
"vue": "^3.5.33",
"vue-tsc": "^2.2.8"
},
"repository": {
"type": "git",
"url": "https://github.com/manuelm02/prism.git"
},
"bugs": {
"url": "https://github.com/manuelm02/prism/issues"
},
"homepage": "https://github.com/manuelm02/prism#readme"
}