-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
72 lines (72 loc) · 1.81 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
{
"name": "lucide-qwik",
"version": "1.0.0",
"description": "Lucide icon library package for Qwik applications",
"author": {
"name": "Eduardo García Maleta",
"email": "egmaleta@proton.me",
"url": "https://github.com/egmaleta"
},
"repository": {
"type": "git",
"url": "https://github.com/egmaleta/lucide-qwik.git"
},
"license": "LICENSE",
"keywords": [
"icon",
"icons",
"lucide",
"qwik"
],
"main": "./lib/index.qwik.mjs",
"qwik": "./lib/index.qwik.mjs",
"types": "./lib-types/index.d.ts",
"exports": {
".": {
"import": "./lib/index.qwik.mjs",
"require": "./lib/index.qwik.cjs",
"types": "./lib-types/index.d.ts"
}
},
"files": [
"lib",
"lib-types"
],
"engines": {
"node": ">=15.0.0"
},
"private": false,
"type": "module",
"scripts": {
"build": "qwik build",
"build.icons": "node --trace-warnings build.js",
"build.lib": "vite build --mode lib",
"build.types": "tsc --emitDeclarationOnly",
"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*\"",
"release": "np",
"start": "vite --open --mode ssr",
"qwik": "qwik",
"test": "echo no tests for now"
},
"devDependencies": {
"@builder.io/qwik": "0.16.1",
"@types/eslint": "8.4.10",
"@types/node": "^18.11.16",
"@types/node-fetch": "latest",
"@typescript-eslint/eslint-plugin": "5.46.1",
"@typescript-eslint/parser": "5.46.1",
"eslint": "8.30.0",
"eslint-plugin-qwik": "latest",
"lucide": "^0.104.0",
"node-fetch": "3.3.0",
"np": "7.6.1",
"prettier": "2.8.1",
"typescript": "4.9.4",
"undici": "5.14.0",
"vite": "4.0.1"
}
}