@unizhen/excel 0.0.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/lib/index.d.ts ADDED
@@ -0,0 +1,2 @@
1
+ export * from './components/index'
2
+ export {}
package/package.json ADDED
@@ -0,0 +1,70 @@
1
+ {
2
+ "name": "@unizhen/excel",
3
+ "version": "0.0.1",
4
+ "author": {
5
+ "name": "Donovan"
6
+ },
7
+ "license": "MIT",
8
+ "files": [
9
+ "lib",
10
+ "volar.d.ts",
11
+ "README.md"
12
+ ],
13
+ "type": "module",
14
+ "types": "lib/index.d.ts",
15
+ "module": "lib/excel.js",
16
+ "exports": {
17
+ ".": {
18
+ "import": {
19
+ "types": "./lib/index.d.ts",
20
+ "default": "./lib/excel.js"
21
+ }
22
+ },
23
+ "./css": "./lib/excel.css"
24
+ },
25
+ "scripts": {
26
+ "dev": "vite",
27
+ "build:src": "pnpm run cleanDist && run-p type-check \"build-only {@}\" --",
28
+ "build:local": "pnpm run cleanLib && run-p type-check && vite build --config ./build.config.ts",
29
+ "build:prod": "pnpm run build:local && pnpm run pub",
30
+ "build-only": "vite build",
31
+ "type-check": "vue-tsc --build --force",
32
+ "cleanLib": "rimraf lib",
33
+ "cleanDist": "rimraf dist",
34
+ "au": "npm adduser",
35
+ "lg": "npm login",
36
+ "pub": "npm publish"
37
+ },
38
+ "devDependencies": {
39
+ "@rushstack/eslint-patch": "^1.12.0",
40
+ "@tsconfig/node20": "^20.1.6",
41
+ "@types/node": "^24.0.15",
42
+ "@vitejs/plugin-vue": "^5.2.4",
43
+ "@vitejs/plugin-vue-jsx": "^4.2.0",
44
+ "@vue/eslint-config-prettier": "^10.2.0",
45
+ "@vue/eslint-config-typescript": "^14.6.0",
46
+ "@vue/tsconfig": "^0.7.0",
47
+ "autoprefixer": "^10.4.21",
48
+ "eslint": "^9.31.0",
49
+ "eslint-plugin-vue": "^10.3.0",
50
+ "npm-run-all2": "^7.0.2",
51
+ "postcss": "^8.5.6",
52
+ "prettier": "^3.6.2",
53
+ "react": "^18.3.1",
54
+ "react-dom": "^18.3.1",
55
+ "rimraf": "^6.0.1",
56
+ "rollup-plugin-visualizer": "^5.14.0",
57
+ "sass": "^1.89.2",
58
+ "typescript": "~5.8.3",
59
+ "vite": "^6.3.5",
60
+ "vite-plugin-compression": "^0.5.1",
61
+ "vite-plugin-dts": "^4.5.4",
62
+ "vue": "^3.5.17",
63
+ "vue-global-api": "^0.4.1",
64
+ "vue-tsc": "^3.0.3"
65
+ },
66
+ "dependencies": {
67
+ "@univerjs/presets": "^0.9.3",
68
+ "@univerjs/sheets-crosshair-highlight": "^0.9.3"
69
+ }
70
+ }