-
Notifications
You must be signed in to change notification settings - Fork 57
Expand file tree
/
Copy pathpackage.json
More file actions
90 lines (90 loc) · 3.22 KB
/
package.json
File metadata and controls
90 lines (90 loc) · 3.22 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
{
"name": "timer",
"version": "3.4.0",
"description": "Time tracker",
"homepage": "https://www.wfhg.cc",
"scripts": {
"dev": "webpack --config=webpack/webpack.dev.ts --watch",
"dev:firefox": "webpack --config=webpack/webpack.dev.firefox.ts --watch",
"dev:safari": "webpack --config=webpack/webpack.dev.safari.ts --watch",
"dev:e2e": "webpack --config=webpack/webpack.e2e.ts",
"android-firefox": "web-ext run -t firefox-android --firefox-apk org.mozilla.fenix -s dist_dev_firefox --adb-device ",
"build": "webpack --config=webpack/webpack.prod.ts",
"build:firefox": "webpack --config=webpack/webpack.prod.firefox.ts",
"build:safari": "webpack --config=webpack/webpack.prod.safari.ts",
"analyze": "webpack --config=webpack/webpack.analyze.ts",
"test": "jest --env=jsdom test/",
"test-c": "jest --coverage --reporters=jest-junit --env=jsdom test/",
"test-e2e": "jest test-e2e/ --runInBand",
"prepare": "husky"
},
"author": {
"name": "zhy",
"email": "returnzhy1996@outlook.com",
"url": "https://www.github.com/sheepzh"
},
"repository": {
"url": "https://github.com/sheepzh/timer"
},
"license": "MIT",
"devDependencies": {
"@babel/plugin-transform-modules-commonjs": "^7.26.3",
"@babel/preset-env": "^7.26.9",
"@crowdin/crowdin-api-client": "^1.42.0",
"@rsdoctor/webpack-plugin": "^1.0.2",
"@swc/core": "^1.11.21",
"@swc/jest": "^0.2.37",
"@types/chrome": "0.0.315",
"@types/decompress": "^4.2.7",
"@types/generate-json-webpack-plugin": "^0.3.7",
"@types/jest": "^29.5.14",
"@types/node": "^22.14.1",
"@types/punycode": "^2.1.4",
"@types/webpack": "^5.28.5",
"@vue/babel-plugin-jsx": "^1.4.0",
"babel-loader": "^10.0.0",
"commitlint": "^19.8.0",
"copy-webpack-plugin": "^13.0.0",
"css-loader": "^7.1.2",
"decompress": "^4.2.1",
"eslint": "^9.25.0",
"filemanager-webpack-plugin": "^8.0.0",
"generate-json-webpack-plugin": "^2.0.0",
"html-webpack-plugin": "^5.6.3",
"husky": "^9.1.7",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"jest-junit": "^16.0.0",
"mini-css-extract-plugin": "^2.9.2",
"postcss": "^8.5.3",
"postcss-loader": "^8.1.1",
"postcss-rtlcss": "^5.7.0",
"puppeteer": "^24.6.1",
"sass": "^1.86.3",
"sass-loader": "^16.0.5",
"style-loader": "^4.0.0",
"ts-loader": "^9.5.2",
"ts-node": "^10.9.2",
"tsconfig-paths": "^4.2.0",
"typescript": "5.8.3",
"url-loader": "^4.1.1",
"web-ext": "^8.5.0",
"webpack": "^5.99.6",
"webpack-cli": "^6.0.1"
},
"dependencies": {
"@element-plus/icons-vue": "^2.3.1",
"@vueuse/core": "^13.1.0",
"countup.js": "^2.8.0",
"echarts": "^5.6.0",
"element-plus": "2.9.8",
"js-base64": "^3.7.7",
"punycode": "^2.3.1",
"stream-browserify": "^3.0.0",
"vue": "^3.5.13",
"vue-router": "^4.5.0"
},
"engines": {
"node": ">=20"
}
}