新增依赖:加密方法

This commit is contained in:
tao
2025-12-23 13:27:29 +08:00
parent c9e442ef0c
commit e7f30f2788
2 changed files with 9 additions and 1 deletions

7
package-lock.json generated
View File

@@ -10,6 +10,7 @@
"dependencies": { "dependencies": {
"ant-design-vue": "^4.2.6", "ant-design-vue": "^4.2.6",
"axios": "^1.10.0", "axios": "^1.10.0",
"jsencrypt": "^3.5.4",
"pinia": "^3.0.3", "pinia": "^3.0.3",
"unplugin-vue-components": "^28.7.0", "unplugin-vue-components": "^28.7.0",
"vue": "^3.5.13", "vue": "^3.5.13",
@@ -1938,6 +1939,12 @@
"integrity": "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==", "integrity": "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==",
"license": "MIT" "license": "MIT"
}, },
"node_modules/jsencrypt": {
"version": "3.5.4",
"resolved": "https://registry.npmmirror.com/jsencrypt/-/jsencrypt-3.5.4.tgz",
"integrity": "sha512-kNjfYEMNASxrDGsmcSQh/rUTmcoRfSUkxnAz+MMywM8jtGu+fFEZ3nJjHM58zscVnwR0fYmG9sGkTDjqUdpiwA==",
"license": "MIT"
},
"node_modules/kolorist": { "node_modules/kolorist": {
"version": "1.8.0", "version": "1.8.0",
"resolved": "https://registry.npmmirror.com/kolorist/-/kolorist-1.8.0.tgz", "resolved": "https://registry.npmmirror.com/kolorist/-/kolorist-1.8.0.tgz",

View File

@@ -4,13 +4,14 @@
"version": "0.0.1", "version": "0.0.1",
"type": "module", "type": "module",
"scripts": { "scripts": {
"dev": "vite --open", "dev": "vite --host --open",
"build": "vite build", "build": "vite build",
"preview": "vite preview" "preview": "vite preview"
}, },
"dependencies": { "dependencies": {
"ant-design-vue": "^4.2.6", "ant-design-vue": "^4.2.6",
"axios": "^1.10.0", "axios": "^1.10.0",
"jsencrypt": "^3.5.4",
"pinia": "^3.0.3", "pinia": "^3.0.3",
"unplugin-vue-components": "^28.7.0", "unplugin-vue-components": "^28.7.0",
"vue": "^3.5.13", "vue": "^3.5.13",