@wil-works/evoke-ui 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/LICENSE +21 -0
- package/README.md +56 -0
- package/dist/evoke-ui.css +3946 -0
- package/dist/index.mjs +5948 -0
- package/dist/showcase-icons.mjs +8317 -0
- package/package.json +54 -0
package/package.json
ADDED
|
@@ -0,0 +1,54 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@wil-works/evoke-ui",
|
|
3
|
+
"version": "0.1.0",
|
|
4
|
+
"description": "Evoke UI — 纯 JS Vue3 官网/纯前端站点组件库,Clean Navy 设计语言(细字重展示排版 · 呼吸感 · 精致微交互)",
|
|
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-ui.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
|
+
"remixicon": "^4.9.1",
|
|
25
|
+
"vite": "^8.0.10",
|
|
26
|
+
"vue": "^3.5.42"
|
|
27
|
+
},
|
|
28
|
+
"keywords": [
|
|
29
|
+
"vue3",
|
|
30
|
+
"ui",
|
|
31
|
+
"evoke-ui",
|
|
32
|
+
"landing",
|
|
33
|
+
"website",
|
|
34
|
+
"marketing-site",
|
|
35
|
+
"design-system"
|
|
36
|
+
],
|
|
37
|
+
"author": "willove",
|
|
38
|
+
"license": "MIT",
|
|
39
|
+
"repository": {
|
|
40
|
+
"type": "git",
|
|
41
|
+
"url": "git+https://github.com/willove/evoke-ui.git",
|
|
42
|
+
"directory": "packages/evoke-ui"
|
|
43
|
+
},
|
|
44
|
+
"publishConfig": {
|
|
45
|
+
"access": "public"
|
|
46
|
+
},
|
|
47
|
+
"scripts": {
|
|
48
|
+
"dev": "vite build --watch",
|
|
49
|
+
"build": "node scripts/check-token-rule.mjs && vite build",
|
|
50
|
+
"gen:icons": "node scripts/generate-remix-icons.mjs",
|
|
51
|
+
"lint:tokens": "node scripts/check-token-rule.mjs",
|
|
52
|
+
"publish:pkg": "npm publish --access public"
|
|
53
|
+
}
|
|
54
|
+
}
|