forked from rgossiaux/svelte-heroicons
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
84 lines (84 loc) · 2.39 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
{
"name": "@robotpajamas/svelte-heroicons",
"version": "2.0.15-rc.3",
"description": "Svelte wrappers for the Heroicons library.",
"homepage": "https://github.com/robotpajamas/svelte-heroicons",
"repository": {
"type": "git",
"url": "https://github.com/robotpajamas/svelte-heroicons"
},
"author": "SJ <[email protected]>",
"bugs": {
"url": "https://github.com/robotpajamas/svelte-heroicons/issues"
},
"license": "MIT",
"files": [
"mini/",
"outline/",
"solid/",
"index.d.ts",
"index.js",
"README.md",
"LICENSE",
"package.json"
],
"exports": {
".": "./index.js",
"./package.json": "./package.json",
"./mini": "./mini/index.js",
"./mini/*": "./mini/*/index.js",
"./outline": "./outline/index.js",
"./outline/*": "./outline/*/index.js",
"./solid": "./solid/index.js",
"./solid/*": "./solid/*/index.js"
},
"svelte": "./index.js",
"type": "module",
"publishConfig": {
"access": "public"
},
"keywords": [
"svelte",
"svelte3",
"sveltejs",
"heroicons",
"tailwindcss",
"icons"
],
"scripts": {
"dev": "vite dev",
"build": "vite build && npm run package",
"preview": "vite preview",
"prepackage": "node generate",
"package": "svelte-kit sync && svelte-package && node workaround && publint dist",
"check": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json",
"check:watch": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json --watch",
"format": "prettier --ignore-path .gitignore --write .",
"lint": "prettier --ignore-path .gitignore --check . && eslint --ignore-path .gitignore .",
"lint:fix": "npm run format && eslint --ignore-path .gitignore . --fix"
},
"peerDependencies": {
"svelte": "^3.54.0"
},
"devDependencies": {
"@sveltejs/adapter-auto": "^2.0.0",
"@sveltejs/kit": "^1.7.1",
"@sveltejs/package": "^2.0.2",
"@typescript-eslint/eslint-plugin": "^5.52.0",
"@typescript-eslint/parser": "^5.52.0",
"eslint": "^8.34.0",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-svelte3": "^4.0.0",
"heroicons": "^2.0.15",
"prettier": "^2.8.4",
"prettier-plugin-svelte": "^2.9.0",
"publint": "^0.1.9",
"svelte": "^3.55.1",
"svelte-check": "^3.0.3",
"svelte2tsx": "^0.6.1",
"svg-to-svelte": "^2.2.1",
"tslib": "^2.5.0",
"typescript": "^4.9.5",
"vite": "^4.1.1"
}
}