-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1011 Bytes
/
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
{
"name": "vite-plugin-lucide-preprocess",
"version": "1.1.1",
"author": {
"url": "https://github.com/WarningImHack3r",
"name": "WarningImHack3r"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/WarningImHack3r/vite-plugin-lucide-preprocess"
},
"keywords": [
"vite",
"vite-plugin",
"lucide",
"preprocessor"
],
"scripts": {
"dev": "tsc -w",
"build": "tsc",
"test": "vitest",
"lint": "prettier --check . && publint",
"format": "prettier --write ."
},
"exports": {
".": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
}
},
"files": [
"dist",
"!dist/**/*.test.*",
"!dist/**/*.spec.*"
],
"peerDependencies": {
"vite": "^5"
},
"devDependencies": {
"lucide-svelte": "^0.452.0",
"prettier": "^3.3.3",
"publint": "^0.2.11",
"typescript": "^5.6.3",
"vite": "^5.4.10",
"vitest": "^2.1.3"
},
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"type": "module",
"packageManager": "pnpm@9.12.2"
}