-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
87 lines (87 loc) · 2.37 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
{
"name": "qwik-fontawesome",
"version": "0.2.0",
"private": false,
"description": "Use Font Awesome Icons with Qwik",
"keywords": [
"qwik",
"fontawesome",
"qwik-fontawesome"
],
"homepage": "https://github.com/caass/qwik-fontawesome#readme",
"bugs": {
"url": "https://github.com/caass/qwik-fontawesome/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/caass/qwik-fontawesome.git"
},
"license": "MIT",
"author": {
"name": "Cass Fridkin",
"email": "[email protected]",
"url": "https://swag.lgbt"
},
"type": "module",
"exports": {
".": {
"import": "./lib/index.qwik.mjs",
"require": "./lib/index.qwik.cjs",
"types": "./lib-types/index.d.ts"
}
},
"main": "./lib/index.qwik.mjs",
"types": "./lib-types/index.d.ts",
"files": [
"lib",
"lib-types"
],
"scripts": {
"build": "qwik build",
"build.lib": "vite build --mode lib",
"build.types": "tsc --project ./tsconfig.emit.json",
"clean": "rimraf ./lib*",
"clean.full": "rimraf node_modules && pnpm run clean",
"dev": "vite --mode ssr",
"dev.debug": "node --inspect-brk ./node_modules/vite/bin/vite.js --mode ssr --force",
"fmt": "prettier --write .",
"fmt.check": "prettier --check .",
"lint": "eslint \"src/**/*.ts*\"",
"qwik": "qwik",
"release": "np",
"sort-package-json": "sort-package-json",
"start": "vite --open --mode ssr"
},
"devDependencies": {
"@builder.io/qwik": "^1.1.0",
"@fortawesome/fontawesome-svg-core": "^6.4.0",
"@fortawesome/free-regular-svg-icons": "^6.4.0",
"@fortawesome/free-solid-svg-icons": "^6.4.0",
"@types/node": "^20.1.2",
"@typescript-eslint/eslint-plugin": "5.59.5",
"@typescript-eslint/parser": "5.59.5",
"eslint": "8.40.0",
"eslint-import-resolver-typescript": "^3.5.5",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-qwik": "^1.1.0",
"normalize.css": "^8.0.1",
"np": "7.7.0",
"prettier": "2.8.8",
"purecss": "^3.0.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"rimraf": "^5.0.0",
"sort-package-json": "^2.4.1",
"typescript": "5.0.4",
"undici": "5.22.0",
"vite": "4.3.5"
},
"peerDependencies": {
"@builder.io/qwik": "^1.1.0",
"@fortawesome/fontawesome-svg-core": "^6.4.0"
},
"engines": {
"node": ">=15.0.0"
},
"qwik": "./lib/index.qwik.mjs"
}