init
Showing
.gitignore
0 → 100644
README.md
0 → 100644
browser/fj-captcha-web.js
0 → 100644
This source diff could not be displayed because it is too large. You can view the blob instead.
browser/style.css
0 → 100644
esm/index.js
0 → 100644
This diff is collapsed.
esm/style.css
0 → 100644
package-lock.json
0 → 100644
This diff is collapsed.
package.json
0 → 100644
| { | |||
| "name": "fj-captcha-vue", | |||
| "version": "1.0.0", | |||
| "type": "module", | |||
| "main": "./esm/index.js", | |||
| "typings": "./esm/index.d.ts", | |||
| "files": [ | |||
| "browser", | |||
| "esm" | |||
| ], | |||
| "scripts": { | |||
| "build": "npm run build:esm && npm run build:declaration && npm run build:browser", | |||
| "build:esm": "vite build -c vite.esm.config.ts", | |||
| "build:browser": "vite build -c vite.browser.config.ts", | |||
| "build:declaration": "vue-tsc -p tsconfig.dts.json" | |||
| }, | |||
| "peerDependencies": { | |||
| "vue": "^3.0.0" | |||
| }, | |||
| "devDependencies": { | |||
| "@types/node": "^20.12.12", | |||
| "@vitejs/plugin-vue": "^5.0.4", | |||
| "less": "^4.2.0", | |||
| "typescript": "^5.4.5", | |||
| "vite": "^5.2.11", | |||
| "vue": "^3.4.27", | |||
| "vue-tsc": "^2.0.17" | |||
| } | |||
| } |
src/Captcha.vue
0 → 100644
src/browser.ts
0 → 100644
src/components/ErrorView.vue
0 → 100644
src/components/Loading.vue
0 → 100644
src/components/SliderBar.vue
0 → 100644
src/components/StatusTip.vue
0 → 100644
src/core/captcha.ts
0 → 100644
src/core/http.ts
0 → 100644
src/core/index.ts
0 → 100644
src/core/locales/en.json
0 → 100644
src/core/locales/index.ts
0 → 100644
src/core/locales/zh-cn.json
0 → 100644
src/core/locales/zh-tw.json
0 → 100644
src/core/types.ts
0 → 100644
src/index.ts
0 → 100644
src/locales.ts
0 → 100644
src/types.ts
0 → 100644
src/vite-env.d.ts
0 → 100644
tsconfig.dts.json
0 → 100644
tsconfig.json
0 → 100644
vite.browser.config.ts
0 → 100644
vite.esm.config.ts
0 → 100644
Please register or sign in to comment