-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
101 lines (101 loc) · 2.81 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
{
"name": "@varlet/icons-library-starter",
"version": "0.0.9",
"type": "module",
"author": "haoziqaq <[email protected]>",
"description": "A icons library starter",
"keywords": [
"svg",
"icons",
"library",
"starter",
"resolver",
"vue3"
],
"sideEffects": [
"svg-fonts/css/*.css",
"svg-fonts/css/*.less",
"svg-fonts/css/*.scss",
"svg-fonts/fonts/*.ttf"
],
"main": "svg-cjs/index.cjs",
"module": "svg-esm/index.js",
"types": "svg-types/index.d.ts",
"exports": {
".": {
"import": "./svg-esm/index.js",
"require": "./svg-cjs/index.cjs",
"types": "./svg-types/index.d.ts"
},
"./resolver": {
"import": "./resolver/index.js",
"require": "./resolver/index.cjs",
"types": "./resolver/index.d.ts"
},
"./svg-fonts/fonts/i-icons-webfont.ttf": "./svg-fonts/fonts/i-icons-webfont.ttf",
"./svg-fonts/css/i-icons.css": "./svg-fonts/css/i-icons.css",
"./svg-fonts/css/i-icons.less": "./svg-fonts/css/i-icons.less",
"./svg-fonts/css/i-icons.scss": "./svg-fonts/css/i-icons.scss"
},
"files": [
"svg-cjs",
"svg-esm",
"svg-fonts",
"svg-types",
"resolver"
],
"license": "MIT",
"scripts": {
"dev": "vite",
"build": "vite build",
"preview": "vite preview",
"icons": "pnpm icons:build && pnpm icons:generate",
"icons:build": "vi build",
"icons:generate": "vi generate",
"icons:figma": "VI_FIGMA_TOKEN=123456 vi figma -f 123456",
"release": "pnpm icons && vr release",
"format": "prettier --write .",
"bump": "pnpm update @varlet/* rattail --latest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/varletjs/varlet-icons-library-starter.git"
},
"bugs": {
"url": "https://github.com/varletjs/varlet-icons-library-starter/issues"
},
"peerDependencies": {
"unplugin-vue-components": "^0.27.0",
"vue": "^3.4.29"
},
"devDependencies": {
"@types/node": "^20.2.5",
"@typescript-eslint/eslint-plugin": "^5.59.8",
"@typescript-eslint/parser": "^5.59.8",
"@unocss/preset-rem-to-px": "^0.61.0",
"@varlet/icon-builder": "0.5.1",
"@varlet/import-resolver": "^3.7.0",
"@varlet/preset-unocss": "^3.7.0",
"@varlet/release": "^0.3.1",
"@varlet/touch-emulator": "^3.7.0",
"@varlet/ui": "^3.7.0",
"@vitejs/plugin-vue": "^5.0.5",
"@vueuse/core": "^10.7.2",
"eslint": "^8.41.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-vue": "^9.14.1",
"prettier": "^3.3.2",
"rattail": "^1.0.14",
"unocss": "^0.61.0",
"unplugin-auto-import": "^0.17.6",
"unplugin-vue-components": "^0.27.0",
"vite": "^5.3.1",
"vue": "^3.4.29"
},
"packageManager": "[email protected]",
"engines": {
"pnpm": ">=9.0"
}
}