-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 1.55 KB
/
Copy pathpackage.json
File metadata and controls
75 lines (75 loc) · 1.55 KB
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
{
"name": "vite-plugin-lucide-preprocess",
"description": "A Vite plugin to tree-shake your Lucide icons.",
"version": "1.5.2",
"author": {
"url": "https://github.com/WarningImHack3r",
"name": "WarningImHack3r"
},
"license": "MIT",
"homepage": "https://github.com/WarningImHack3r/vite-plugin-lucide-preprocess",
"bugs": {
"url": "https://github.com/WarningImHack3r/vite-plugin-lucide-preprocess/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/WarningImHack3r/vite-plugin-lucide-preprocess.git"
},
"keywords": [
"vite",
"vite-plugin",
"lucide",
"tree-shaking",
"treeshaking",
"tree-shake",
"treeshake",
"imports",
"preprocessor"
],
"scripts": {
"dev": "tsc -w",
"build": "tsc",
"test": "vitest",
"typecheck": "tsc --noEmit",
"prepublishOnly": "pnpm run build",
"lint": "prettier --check . && publint",
"format": "prettier --write ."
},
"exports": {
".": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
}
},
"files": [
"dist"
],
"peerDependencies": {
"rolldown": ">=0.1 || >=1.0.0-0",
"rollup": ">=1",
"vite": ">=2"
},
"peerDependenciesMeta": {
"rollup": {
"optional": true
},
"rolldown": {
"optional": true
}
},
"dependencies": {
"magic-string": "^0.30.0 || ^1.0.0"
},
"devDependencies": {
"@lucide/svelte": "^1.14.0",
"prettier": "^3.0.0",
"publint": "^0.3.0",
"typescript": "^7.0.0",
"vite": "^8.0.0",
"vitest": "^4.0.0"
},
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"type": "module",
"packageManager": "pnpm@11.14.0"
}