-
-
Notifications
You must be signed in to change notification settings - Fork 60
/
package.json
102 lines (102 loc) · 2.52 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
102
{
"name": "@phosphor-icons/react",
"version": "2.1.7",
"description": "A clean and friendly icon family for React",
"author": {
"name": "Tobias Fried",
"email": "[email protected]",
"url": "https://tobiasfried.com"
},
"license": "MIT",
"repository": "phosphor-icons/react",
"homepage": "https://phosphoricons.com",
"sideEffects": false,
"private": false,
"type": "module",
"module": "./dist/index.mjs",
"main": "./dist/index.cjs",
"exports": {
".": {
"import": "./dist/index.mjs",
"require": "./dist/index.cjs",
"types": "./dist/index.d.ts"
},
"./dist/icons/*": {
"import": "./dist/csr/*.mjs",
"require": "./dist/index.cjs",
"types": "./dist/csr/*.d.ts"
},
"./dist/csr/*": {
"import": "./dist/csr/*.mjs",
"require": "./dist/index.cjs",
"types": "./dist/csr/*.d.ts"
},
"./dist/lib/*": {
"import": "./dist/lib/*.mjs",
"require": "./dist/index.cjs",
"types": "./dist/lib/*.d.ts"
},
"./dist/ssr": {
"import": "./dist/ssr/index.mjs",
"require": "./dist/index.cjs",
"types": "./dist/ssr/index.d.ts"
},
"./dist/ssr/*": {
"import": "./dist/ssr/*.mjs",
"require": "./dist/index.cjs",
"types": "./dist/ssr/*.d.ts"
},
"./package.json": {
"default": "./package.json"
},
"./*": {
"import": "./dist/csr/*.mjs",
"require": "./dist/index.cjs",
"types": "./dist/csr/*.d.ts"
}
},
"types": "./dist/index.d.ts",
"files": [
"./dist"
],
"engines": {
"node": ">=10"
},
"keywords": [
"react",
"icons",
"svg",
"phosphor",
"design",
"interface",
"UI",
"UX"
],
"scripts": {
"serve": "vite serve ./example",
"build": "vite build && tsc --emitDeclarationOnly",
"test": "vitest",
"assemble": "tsx scripts/assemble.ts",
"format": "prettier --write \"./src/**/*.{js,jsx,ts,tsx,json,vue}\" \"./example/**/*.{js,jsx,ts,tsx,json,vue}\" \"./scripts/**/*.{mjs, js,jsx,ts,tsx,json,vue}\""
},
"peerDependencies": {
"react": ">= 16.8",
"react-dom": ">= 16.8"
},
"devDependencies": {
"@testing-library/react": "^14.1.2",
"@types/node": "^18.19.8",
"@types/react": "^18.2.48",
"@types/react-dom": "^18.2.18",
"@vitejs/plugin-react": "^4.2.1",
"chalk": "^5.3.0",
"jsdom": "^21.1.2",
"prettier": "^3.2.4",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"tsx": "^4.7.2",
"typescript": "^5.4.5",
"vite": "^5.2.9",
"vitest": "^1.5.0"
}
}