-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
104 lines (104 loc) · 2.78 KB
/
Copy pathpackage.json
File metadata and controls
104 lines (104 loc) · 2.78 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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
{
"name": "PicAliOSS",
"version": "0.0.6",
"private": true,
"description": "A lightweight browser extension for uploading and managing images on Alibaba Cloud OSS.",
"keywords": [
"aliyun",
"browser-extension",
"chrome-extension",
"image-hosting",
"oss",
"primevue",
"typescript",
"vue3",
"web-extension",
"wxt"
],
"homepage": "https://github.com/yxb123456cy/PicAliOSS#readme",
"bugs": {
"url": "https://github.com/yxb123456cy/PicAliOSS/issues"
},
"license": "MIT",
"author": {
"name": "轻叶Coding",
"email": "2186256471@qq.com",
"url": "https://github.com/yxb123456cy"
},
"repository": {
"type": "git",
"url": "git+https://github.com/yxb123456cy/PicAliOSS.git"
},
"type": "module",
"scripts": {
"dev": "wxt -b chrome",
"dev:chrome": "wxt -b chrome",
"dev:firefox": "wxt -b firefox",
"build": "wxt build -b chrome",
"build:chrome": "wxt build -b chrome",
"build:firefox": "wxt build -b firefox",
"zip": "wxt zip -b chrome",
"zip:chrome": "wxt zip -b chrome",
"zip:firefox": "wxt zip -b firefox",
"typecheck": "vue-tsc --noEmit",
"compile": "bun run typecheck",
"lint": "oxlint .",
"format": "oxfmt --write .",
"format:check": "oxfmt --check .",
"test": "vitest run",
"postinstall": "wxt prepare",
"commit": "git-cz",
"prepare": "husky",
"test:unit": "vitest run",
"test:watch": "vitest",
"release": "standard-version",
"release:minor": "standard-version --release-as minor",
"release:major": "standard-version --release-as major",
"release:patch": "standard-version --release-as patch"
},
"dependencies": {
"@primeuix/themes": "^2.0.3",
"@types/crypto-js": "^4.2.2",
"@vueuse/core": "^14.2.1",
"ali-oss": "^6.23.0",
"browser-image-compression": "^2.0.2",
"crypto-js": "^4.2.0",
"pinia": "^3.0.4",
"pinia-plugin-persistedstate": "^4.7.1",
"primeicons": "^7.0.0",
"primevue": "^4.5.5",
"vue": "^3.5.29",
"vue-i18n": "^11.3.2",
"vue-router": "4"
},
"devDependencies": {
"@iconify/vue": "^5.0.1",
"@primevue/auto-import-resolver": "^4.5.5",
"@types/ali-oss": "^6.23.3",
"@types/chrome": "^0.2.2",
"@wxt-dev/module-vue": "^1.0.3",
"cz-git": "^1.12.0",
"dotenv": "^17.4.2",
"husky": "^9.1.7",
"oxfmt": "^0.44.0",
"oxlint": "^1.59.0",
"sass": "^1.99.0",
"sass-embedded": "^1.99.0",
"standard-version": "^9.5.0",
"typescript": "^5.9.3",
"unplugin-auto-import": "^21.0.0",
"unplugin-vue-components": "^32.0.0",
"vitest": "^4.1.4",
"vue-tsc": "^3.2.5",
"wxt": "^0.20.20"
},
"config": {
"commitizen": {
"path": "node_modules/cz-git",
"useEmoji": true
}
},
"engines": {
"bun": ">=1.1.0"
}
}