forked from scriptscat/scriptcat
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
85 lines (85 loc) · 3.05 KB
/
Copy pathpackage.json
File metadata and controls
85 lines (85 loc) · 3.05 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
{
"name": "scriptcat",
"version": "0.5.0",
"description": "脚本猫,一个可以执行用户脚本的浏览器扩展,万物皆可脚本化,让你的浏览器可以做更多的事情!",
"scripts": {
"test": "jest",
"test:debug": "node --inspect-brk node_modules/.bin/jest --runInBand",
"devtool": "vue-devtools",
"dev": "webpack --mode development --config webpack.dev.babel.ts",
"dev:no.split": "webpack --mode development --config webpack.dev.no.split.babel.ts",
"build": "webpack --mode production --config webpack.prod.babel.ts",
"build-no-split": "webpack --mode production --config webpack.no.split.babel.ts",
"pack": "node ./scripts/pack.js"
},
"author": "CodFrm",
"license": "MIT",
"dependencies": {
"adm-zip": "^0.5.3",
"axios": "^0.21.1",
"buffer": "^4.9.2",
"cron": "^1.8.2",
"crypto-js": "^4.0.0",
"dayjs": "^1.10.4",
"dexie": "^3.0.3",
"file-saver": "^2.0.5",
"jszip": "^3.7.1",
"monaco-editor": "^0.22.3",
"reflect-metadata": "^0.1.13",
"uuid": "^8.3.2",
"vue": "^2.6.12",
"vue-i18n": "^8.24.1",
"vue-router": "^3.5.1",
"vuetify": "^2.4.5",
"vuetify-dialog-promise": "^2.4.2",
"vuex": "^3.6.2",
"vuex-module-decorators": "^1.0.1",
"yaml": "^1.10.2"
},
"devDependencies": {
"@babel/core": "^7.13.10",
"@babel/plugin-transform-runtime": "^7.13.10",
"@babel/preset-env": "^7.13.10",
"@babel/preset-typescript": "^7.13.0",
"@babel/register": "^7.13.8",
"@mdi/font": "^5.9.55",
"@mdi/js": "^5.9.55",
"@types/adm-zip": "^0.4.34",
"@types/chrome": "0.0.127",
"@types/cron": "^1.7.2",
"@types/crypto-js": "^4.0.1",
"@types/file-saver": "^2.0.3",
"@types/jest": "^26.0.22",
"@types/uuid": "^8.3.0",
"@typescript-deploys/monaco-editor": "^4.2.0-pr-42612-2",
"@vue/babel-helper-vue-jsx-merge-props": "^1.2.1",
"@vue/babel-preset-jsx": "^1.2.4",
"@vue/cli-plugin-typescript": "^4.5.11",
"@vue/devtools": "^5.3.4",
"babel-loader": "^8.2.2",
"clean-webpack-plugin": "^3.0.0",
"copy-webpack-plugin": "^8.1.1",
"crx": "^5.0.1",
"css-loader": "^5.0.1",
"deepmerge": "^4.2.2",
"electron": "^12.0.0",
"file-loader": "^6.2.0",
"html-webpack-plugin": "^5.0.0-beta.6",
"jest": "^26.6.3",
"mini-css-extract-plugin": "^1.3.9",
"monaco-editor-locales-plugin": "0.0.3",
"raw-loader": "^4.0.2",
"sass": "^1.32.8",
"sass-loader": "^11.0.1",
"style-loader": "^2.0.0",
"ts-jest": "^26.5.4",
"ts-loader": "^8.0.14",
"typescript": "^4.1.3",
"vue-class-component": "^7.2.6",
"vue-loader": "^15.9.6",
"vue-property-decorator": "^9.1.2",
"vue-template-compiler": "^2.6.12",
"webpack": "^5.11.1",
"webpack-cli": "^4.3.1"
}
}