@wil-works/evoke-charts 0.1.0

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/package.json ADDED
@@ -0,0 +1,52 @@
1
+ {
2
+ "name": "@wil-works/evoke-charts",
3
+ "version": "0.1.0",
4
+ "description": "Evoke Charts — 零依赖 Canvas 自绘图表库(Vue3),Evoke 生态独立图表包",
5
+ "type": "module",
6
+ "main": "./dist/index.mjs",
7
+ "module": "./dist/index.mjs",
8
+ "exports": {
9
+ ".": {
10
+ "import": "./dist/index.mjs"
11
+ },
12
+ "./styles": "./dist/evoke-charts.css",
13
+ "./package.json": "./package.json"
14
+ },
15
+ "files": [
16
+ "dist"
17
+ ],
18
+ "peerDependencies": {
19
+ "vue": "^3.5.0"
20
+ },
21
+ "devDependencies": {
22
+ "@vitejs/plugin-vue": "^6.0.8",
23
+ "@vue/compiler-sfc": "^3.5.42",
24
+ "vite": "^8.0.10",
25
+ "vue": "^3.5.42"
26
+ },
27
+ "keywords": [
28
+ "vue3",
29
+ "charts",
30
+ "canvas",
31
+ "chart-library",
32
+ "evoke-charts",
33
+ "visualization",
34
+ "design-system"
35
+ ],
36
+ "author": "willove",
37
+ "license": "MIT",
38
+ "repository": {
39
+ "type": "git",
40
+ "url": "git+https://github.com/willove/evoke-ui.git",
41
+ "directory": "packages/evoke-charts"
42
+ },
43
+ "publishConfig": {
44
+ "access": "public"
45
+ },
46
+ "scripts": {
47
+ "dev": "vite build --watch",
48
+ "build": "node scripts/check-token-rule.mjs && vite build",
49
+ "lint:tokens": "node scripts/check-token-rule.mjs",
50
+ "publish:pkg": "npm publish --access public"
51
+ }
52
+ }