Initial commit
上级
正在显示
.gitignore
0 → 100644
.npmignore
0 → 100644
PUBLISH.md
0 → 100644
README.md
0 → 100644
dist/config/index.d.ts
0 → 100644
dist/config/index.d.ts.map
0 → 100644
dist/index.d.ts
0 → 100644
dist/index.d.ts.map
0 → 100644
dist/kb-search.js
0 → 100644
This source diff could not be displayed because it is too large.
You can
view the blob
instead.
dist/kb-search.js.map
0 → 100644
This source diff could not be displayed because it is too large.
You can
view the blob
instead.
dist/kb-search.umd.cjs
0 → 100644
This source diff could not be displayed because it is too large.
You can
view the blob
instead.
dist/kb-search.umd.cjs.map
0 → 100644
This source diff could not be displayed because it is too large.
You can
view the blob
instead.
dist/style.css
0 → 100644
This source diff could not be displayed because it is too large.
You can
view the blob
instead.
dist/types/index.d.ts
0 → 100644
dist/types/index.d.ts.map
0 → 100644
docs/README.md
0 → 100644
examples/App.vue
0 → 100644
examples/advanced.vue
0 → 100644
examples/index.html
0 → 100644
examples/main.ts
0 → 100644
examples/minimal.vue
0 → 100644
examples/vite-env.d.ts
0 → 100644
index.html
0 → 100644
package-lock.json
0 → 100644
package.json
0 → 100644
| { | |||
| "name": "kb-search", | |||
| "version": "1.0.0", | |||
| "description": "A knowledge base search component library based on Vue 3 and Arco Design", | |||
| "type": "module", | |||
| "main": "./dist/kb-search.umd.cjs", | |||
| "module": "./dist/kb-search.js", | |||
| "types": "./dist/index.d.ts", | |||
| "exports": { | |||
| ".": { | |||
| "types": "./dist/index.d.ts", | |||
| "import": "./dist/kb-search.js", | |||
| "require": "./dist/kb-search.umd.cjs" | |||
| } | |||
| }, | |||
| "files": [ | |||
| "dist", | |||
| "README.md" | |||
| ], | |||
| "scripts": { | |||
| "dev": "vite --config vite.config.demo.ts --open", | |||
| "build:lib": "vue-tsc --noEmit && vite build", | |||
| "preview": "vite preview examples --port 5050", | |||
| "typecheck": "vue-tsc --noEmit", | |||
| "prepublishOnly": "npm run build:lib" | |||
| }, | |||
| "keywords": [ | |||
| "vue", | |||
| "vue3", | |||
| "search", | |||
| "component", | |||
| "arco-design", | |||
| "knowledge-base", | |||
| "ui-library" | |||
| ], | |||
| "author": "longfei0128@foxmail.com", | |||
| "license": "MIT", | |||
| "repository": { | |||
| "type": "git", | |||
| "url": "" | |||
| }, | |||
| "peerDependencies": { | |||
| "vue": "^3.3.0", | |||
| "@arco-design/web-vue": "^2.50.0" | |||
| }, | |||
| "devDependencies": { | |||
| "@types/node": "^20.16.1", | |||
| "@vitejs/plugin-vue": "^5.1.4", | |||
| "@vue/tsconfig": "^0.5.1", | |||
| "typescript": "^5.5.4", | |||
| "vite": "^5.4.0", | |||
| "vite-plugin-dts": "^3.8.1", | |||
| "vue-tsc": "^2.0.7" | |||
| }, | |||
| "dependencies": { | |||
| "axios": "^1.6.0", | |||
| "dayjs": "^1.11.10" | |||
| } | |||
| } | |||
| \ No newline at end of file |
src/components/KbSearch/index.vue
0 → 100644
src/config/index.ts
0 → 100644
src/index.ts
0 → 100644
src/types/index.ts
0 → 100644
tsconfig.json
0 → 100644
vite.config.demo.ts
0 → 100644
vite.config.ts
0 → 100644
请
注册
或者
登录
后发表评论