-
Notifications
You must be signed in to change notification settings - Fork 48
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.55 KB
/
Copy pathpackage.json
File metadata and controls
65 lines (65 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
{
"name": "@octanejs/lucide",
"version": "0.1.43",
"license": "ISC",
"type": "module",
"engines": {
"node": ">=22.22.2"
},
"description": "Lucide icons for Octane, with the lucide-react API and framework-neutral icon data.",
"author": {
"name": "Dominic Gannaway",
"email": "dg@domgan.com"
},
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/octanejs/octane.git",
"directory": "packages/lucide"
},
"main": "src/index.ts",
"module": "src/index.ts",
"types": "src/index.ts",
"files": [
"src",
"README.md",
"LICENSE"
],
"sideEffects": false,
"exports": {
".": "./src/index.ts",
"./dynamic": "./src/dynamic.ts",
"./dynamicIconImports": "./src/dynamicIconImports.ts",
"./icons/*": "./src/icons/*.ts"
},
"octane": {
"hookSlots": {
"manual": [
"src"
]
}
},
"scripts": {
"generate": "node scripts/generate.mjs",
"generate:check": "node scripts/generate.mjs --check",
"test": "vitest run --root ../.. --project lucide --project lucide-differential --project lucide-ssr"
},
"dependencies": {
"@lucide/icons": "catalog:default"
},
"peerDependencies": {
"octane": "workspace:*"
},
"devDependencies": {
"@tsrx/react": "catalog:default",
"esbuild": "catalog:default",
"lucide-react": "catalog:default",
"octane": "workspace:*",
"prettier": "catalog:default",
"react": "catalog:default",
"react-dom": "catalog:default",
"vitest": "catalog:default"
}
}