-
Notifications
You must be signed in to change notification settings - Fork 113
/
package.json
73 lines (73 loc) · 2.04 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": "word-gpt-plus",
"version": "0.4.11",
"private": true,
"scripts": {
"dev": "vue-cli-service serve --port 3000",
"serve": "vue-cli-service serve --port 3000",
"build": "vue-cli-service build",
"lint": "vue-cli-service lint --fix",
"lint:fix": "eslint --fix --ext .js,.jsx,.ts,.tsx,.vue src/",
"cz": "git-cz",
"release": "bump-version",
"lint:dpdm": "dpdm -T --tsconfig ./tsconfig.json --no-tree --no-warning --exit-code circular:1 src/main.ts"
},
"dependencies": {
"@azure/openai": "1.0.0-beta.4",
"@element-plus/icons-vue": "^2.3.1",
"@google/generative-ai": "^0.21.0",
"axios": "^1.6.2",
"core-js": "^3.37.1",
"dexie": "^3.2.4",
"element-plus": "2.7.7",
"groq-sdk": "^0.8.0",
"openai": "^4.10.0",
"unfetch": "^5.0.0",
"vue": "^3.4.31",
"vue-class-component": "^8.0.0-rc.1",
"vue-i18n": "^9.13.1",
"vue-router": "^4.4.0"
},
"devDependencies": {
"@picgo/bump-version": "^1.1.2",
"@types/office-js": "^1.0.446",
"@typescript-eslint/eslint-plugin": "^6.14.0",
"@typescript-eslint/parser": "^6.14.0",
"@vue/cli-plugin-babel": "^5.0.8",
"@vue/cli-plugin-eslint": "^5.0.8",
"@vue/cli-plugin-router": "^5.0.8",
"@vue/cli-plugin-typescript": "^5.0.8",
"@vue/cli-service": "^5.0.8",
"@vue/eslint-config-prettier": "^9.0.0",
"@vue/eslint-config-standard": "^8.0.1",
"@vue/eslint-config-typescript": "^12.0.0",
"dpdm": "^3.14.0",
"eslint": "^8.57.0",
"eslint-plugin-vue": "^9.26.0",
"prettier": "^3.3.2",
"stylus": "^0.61.0",
"stylus-loader": "^7.1.3",
"typescript": "^5.2.2"
},
"commitlint": {
"extends": [
"./node_modules/@picgo/bump-version/commitlint-picgo"
]
},
"config": {
"commitizen": {
"path": "./node_modules/cz-customizable"
},
"cz-customizable": {
"config": "./node_modules/@picgo/bump-version/.cz-config.js"
}
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"engines": {
"node": ">=18.0.0"
}
}