init
parents
Showing
.env
0 → 100644
.eslintrc.cjs
0 → 100644
.gitignore
0 → 100644
.prettierrc.json
0 → 100644
.vscode/extensions.json
0 → 100644
README.md
0 → 100644
auto-imports.d.ts
0 → 100644
components.d.ts
0 → 100644
env.d.ts
0 → 100644
index.html
0 → 100644
package-lock.json
0 → 100644
This source diff could not be displayed because it is too large.
You can
view the blob
instead.
package.json
0 → 100644
{ | ||
"name": "video-tools", | ||
"version": "0.0.0", | ||
"private": true, | ||
"scripts": { | ||
"dev": "vite", | ||
"build": "run-p type-check \"build-only {@}\" --", | ||
"preview": "vite preview", | ||
"build-only": "vite build", | ||
"type-check": "vue-tsc --noEmit -p tsconfig.app.json --composite false", | ||
"lint": "eslint . --ext .vue,.js,.jsx,.cjs,.mjs,.ts,.tsx,.cts,.mts --fix --ignore-path .gitignore", | ||
"format": "prettier --write src/" | ||
}, | ||
"dependencies": { | ||
"@element-plus/icons-vue": "^2.1.0", | ||
"axios": "^1.6.1", | ||
"element-plus": "^2.4.2", | ||
"file-saver": "^2.0.5", | ||
"pinia": "^2.1.7", | ||
"sass": "^1.69.5", | ||
"vue": "^3.3.4", | ||
"vue-router": "^4.2.5" | ||
}, | ||
"devDependencies": { | ||
"@rushstack/eslint-patch": "^1.3.3", | ||
"@tsconfig/node18": "^18.2.2", | ||
"@types/file-saver": "^2.0.7", | ||
"@types/node": "^18.18.9", | ||
"@vitejs/plugin-vue": "^4.4.0", | ||
"@vue/eslint-config-prettier": "^8.0.0", | ||
"@vue/eslint-config-typescript": "^12.0.0", | ||
"@vue/tsconfig": "^0.4.0", | ||
"eslint": "^8.49.0", | ||
"eslint-plugin-vue": "^9.17.0", | ||
"npm-run-all2": "^6.1.1", | ||
"prettier": "^3.0.3", | ||
"typescript": "~5.2.0", | ||
"unplugin-auto-import": "^0.16.7", | ||
"unplugin-vue-components": "^0.25.2", | ||
"vite": "^4.5.0", | ||
"vue-tsc": "^1.8.22" | ||
} | ||
} |
public/favicon.ico
0 → 100644
9.44 KB
src/App.vue
0 → 100644
src/api/request.ts
0 → 100644
src/assets/base.css
0 → 100644
src/assets/logo.svg
0 → 100644
src/assets/main.css
0 → 100644
src/main.ts
0 → 100644
src/router/index.ts
0 → 100644
src/stores/counter.ts
0 → 100644
src/utils/exportFile.ts
0 → 100644
src/views/home/index.vue
0 → 100644
tsconfig.app.json
0 → 100644
tsconfig.json
0 → 100644
tsconfig.node.json
0 → 100644
typings/index.d.ts
0 → 100644
typings/types/index.d.ts
0 → 100644
typings/types/wm/index.d.ts
0 → 100644
vite.config.ts
0 → 100644