-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.42 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.42 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
{
"name": "solid-phosphor",
"version": "1.0.16",
"type": "module",
"description": "Phosphor icons for SolidJS",
"license": "GPL-3.0-only",
"scripts": {
"build": "tsc",
"clean": "tsx ./bin/clean.ts",
"generate": "tsx ./bin/generate.ts"
},
"devDependencies": {
"@biomejs/biome": "^1.8.3",
"@types/node": "^20.14.9",
"solid-js": "^1.8.18",
"tsx": "^4.16.0",
"typescript": "^5.5.2"
},
"dependencies": {
"@phosphor-icons/core": "^2.1.1"
},
"peerDependencies": {
"solid-js": "^1.7.3"
},
"files": [
"dist"
],
"exports": {
".": {
"import": "./dist/src/index.js",
"types": "./dist/src/index.d.ts"
},
"./bold": {
"import": "./dist/src/icons/bold/index.js",
"types": "./dist/src/icons/bold/index.d.ts"
},
"./duotone": {
"import": "./dist/src/icons/duotone/index.js",
"types": "./dist/src/icons/duotone/index.d.ts"
},
"./fill": {
"import": "./dist/src/icons/fill/index.js",
"types": "./dist/src/icons/fill/index.d.ts"
},
"./light": {
"import": "./dist/src/icons/light/index.js",
"types": "./dist/src/icons/light/index.d.ts"
},
"./regular": {
"import": "./dist/src/icons/regular/index.js",
"types": "./dist/src/icons/regular/index.d.ts"
},
"./thin": {
"import": "./dist/src/icons/thin/index.js",
"types": "./dist/src/icons/thin/index.d.ts"
}
}
}