forked from Cweili/svelte-fa
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
71 lines (71 loc) · 2.13 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
{
"name": "@jrmoynihan/svelte-fa",
"version": "4.0.1",
"description": "Tiny FontAwesome component for Svelte",
"keywords": [
"fontawesome",
"font-awesome",
"svelte",
"svelte.js",
"component",
"icon",
"svg",
"duotone"
],
"repository": {
"type": "git",
"url": "https://github.com/@jrmoynihan/svelte-fa.git"
},
"author": "Cweili",
"maintainers": [
"jrmoynihan"
],
"license": "MIT",
"homepage": "https://github.com/jrmoynihan/svelte-fa/",
"bugs": {
"url": "https://github.com/jrmoynihan/svelte-fa/issues"
},
"scripts": {
"dev": "vite dev",
"build": "svelte-kit sync && svelte-package",
"publish": "cd package && pnpm publish",
"package-publish-patch": "pnpm version patch && svelte-package && cd package && pnpm publish",
"package-publish-minor": "pnpm version minor && svelte-package && cd package && pnpm publish",
"package-publish-major": "pnpm version major && svelte-package && cd package && pnpm publish",
"prepublishOnly": "echo 'Did you mean to publish `./package/`, instead of `./`?' && exit 1",
"check": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json",
"check:watch": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json --watch",
"lint": "prettier --plugin-search-dir . --check . && eslint .",
"format": "prettier --plugin-search-dir . --write .",
"test": "tsd && jest test --coverage"
},
"dependencies": {
"svelte": "^5.0.0-next"
},
"devDependencies": {
"@sveltejs/kit": "^2.5.0",
"@fortawesome/fontawesome-common-types": "^6.4.0",
"@fortawesome/free-solid-svg-icons": "^6.4.0",
"@sveltejs/adapter-auto": "^2.0.0",
"@sveltejs/package": "^2.0.2",
"@typescript-eslint/eslint-plugin": "^5.59.0",
"@typescript-eslint/parser": "^5.59.0",
"eslint": "^8.39.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-svelte3": "^4.0.0",
"prettier": "^2.8.8",
"prettier-plugin-svelte": "^2.10.0",
"svelte-check": "^3.2.0",
"svelte-preprocess": "^5.0.3",
"tsd": "^0.28.1",
"tslib": "^2.5.0",
"typescript": "^5.0.4",
"vite": "^4.3.1"
},
"type": "module",
"exports": {
"./package.json": "./package.json",
".": "./index.js"
},
"svelte": "./index.js"
}