forked from phosphor-icons/react
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 1.36 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
{
"name": "phosphor-icons-qwik",
"version": "2.0.5",
"description": "A clean and friendly icon family for React",
"author": {
"name": "Tobias Fried",
"email": "friedtm@gmail.com",
"url": "https://tobiasfried.com"
},
"license": "MIT",
"homepage": "https://phosphoricons.com",
"sideEffects": false,
"private": false,
"module": "./dist/index.es.js",
"exports": {
".": {
"import": "./dist/index.es.js"
}
},
"type": "module",
"types": "./dist/index.d.ts",
"files": [
"./dist"
],
"engines": {
"node": ">=10"
},
"keywords": [
"react",
"icons",
"svg",
"phosphor",
"design",
"interface",
"UI",
"UX"
],
"scripts": {
"serve": "vite --open",
"build": "vite build --mode lib && tsc --emitDeclarationOnly",
"test": "vitest",
"collate": "node bin/collate.js",
"assemble": "node bin/assemble.js",
"format": "prettier --write \"./src/**/*.{js,jsx,ts,tsx,json,vue}\" \"./example/**/*.{js,jsx,ts,tsx,json,vue}\" \"./bin/**/*.{js,jsx,ts,tsx,json,vue}\""
},
"devDependencies": {
"@builder.io/qwik": "^0.21.0",
"@types/node": "^18.11.18",
"chalk": "^4.1.0",
"jsdom": "^21.1.0",
"prettier": "^2.8.3",
"typescript": "^4.9.4",
"vite": "^4.1.2",
"vite-tsconfig-paths": "^4.0.7",
"vitest": "^0.28.5"
},
"resolutions": {
"vite": "4.1.2"
}
}