-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
73 lines (73 loc) · 1.94 KB
/
package.json
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
69
70
71
72
73
{
"name": "@stevending1st/open-digger-cli",
"version": "0.0.9",
"description": "OpenDigger CLI",
"bin": {
"digger": "bin/index.mjs"
},
"files": [
"bin",
"dist",
"report_web"
],
"scripts": {
"dev": "unbuild --stub",
"build": "unbuild",
"dev:report": "vite report_web",
"build:report": "tsc --noEmit && vite build report_web --outDir ../report_web_dist",
"preview:report": "vite preview --outDir report_web_dist",
"typecheck": "tsc --noEmit",
"lint-staged": "lint-staged",
"test": "npm run typecheck && npm run lint-staged",
"prepublish": "rimraf dist report_web_dist && npm run build",
"publish": "npm publish --access public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/stevending1st/open-digger-cli.git"
},
"author": "stevending1st",
"license": "MIT",
"bugs": {
"url": "https://github.com/stevending1st/open-digger-cli/issues"
},
"homepage": "https://github.com/stevending1st/open-digger-cli#readme",
"prettier": {
"singleQuote": true,
"trailingComma": "none",
"arrowParens": "avoid",
"tabWidth": 2
},
"lint-staged": {
"*.{md,less,json,yml,ts,tsx}": "prettier --write"
},
"dependencies": {
"@vitejs/plugin-react": "^4.0.0",
"date-and-time": "^3.0.0",
"echarts": "^5.4.2",
"echarts-for-react": "^3.0.2",
"kolorist": "^1.8.0",
"node-fetch": "^3.3.1",
"prompts": "^2.4.2",
"puppeteer": "^21.3.8",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"rimraf": "^5.0.5",
"unconfig": "^0.3.9",
"vite": "^4.3.8",
"yargs": "^17.7.2"
},
"devDependencies": {
"@types/date-and-time": "^0.13.0",
"@types/node": "^20.1.7",
"@types/prompts": "^2.4.5",
"@types/react": "^18.2.6",
"@types/react-dom": "^18.2.4",
"@types/yargs": "^17.0.24",
"husky": "^8.0.3",
"lint-staged": "^13.2.2",
"prettier": "^2.8.8",
"typescript": "^5.0.4",
"unbuild": "^1.2.1"
}
}