-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
82 lines (82 loc) · 2.44 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
{
"name": "@svelte-plugins/tooltips",
"version": "3.0.1",
"license": "MIT",
"description": "A simple tooltip action and component designed for Svelte.",
"author": "Kieran Boyle (https://github.com/dysfunc)",
"type": "module",
"types": "./dist/index.d.ts",
"module": "./dist/index.js",
"svelte": "./dist/index.js",
"keywords": [
"components",
"tooltip",
"tooltips",
"popover",
"action",
"svelte",
"ui",
"javascript"
],
"repository": {
"type": "git",
"url": "git+https://github.com/svelte-plugins/tooltips.git"
},
"files": [
"dist",
"src"
],
"exports": {
".": {
"types": "./dist/index.d.ts",
"svelte": "./dist/index.js",
"import": "./dist/index.js"
},
"./package.json": "./package.json"
},
"homepage": "https://github.com/svelte-plugins/tooltips",
"bugs": "https://github.com/svelte-plugins/tooltips/issues",
"scripts": {
"start": "npm --prefix ./docs install && vite & npm --prefix ./docs run dev",
"dev": "vite",
"build": "svelte-package --input ./src && pnpm lint:package",
"build:docs": "npm --prefix ./docs run build",
"deploy": "pnpm build:docs && npx gh-pages -d docs/build",
"publish": "pnpm build && npm publish --access=public",
"format": "prettier --write \"src/**/*.{js,ts,json,svelte}\"",
"check": "svelte-check --tsconfig ./tsconfig.json",
"lint": "eslint -c ./.eslintrc.json --fix \"src/**/*.{.js,.ts,svelte}\"",
"lint:package": "publint --strict",
"test": "vitest --run --coverage",
"test:watch": "vitest",
"test:coverage": "pnpm test && open ./coverage/index.html"
},
"devDependencies": {
"@sveltejs/package": "^2.2.4",
"@sveltejs/vite-plugin-svelte": "^3.0.1",
"@testing-library/jest-dom": "^6.1.4",
"@testing-library/svelte": "^4.0.5",
"@tsconfig/svelte": "^5.0.2",
"@typescript-eslint/parser": "^6.16.0",
"@vitest/coverage-v8": "^0.34.6",
"autoprefixer": "^9.8.6",
"eslint": "^8.54.0",
"eslint-plugin-svelte": "^2.35.1",
"eslint-plugin-vitest": "^0.3.10",
"husky": "^6.0.0",
"jsdom": "^23.0.0",
"lint-staged": "^10.5.4",
"postcss": "^8.4.32",
"prettier": "^3.1.0",
"prettier-plugin-svelte": "^3.1.2",
"publint": "^0.2.7",
"svelte": "^4.2.7",
"svelte-check": "^3.6.2",
"typescript": "^5.2.2",
"vite": "^5.0.2",
"vitest": "^0.34.6"
},
"peerDependencies": {
"svelte": "^3.54.0 || ^4.0.0 || ^5.0.0-next.0"
}
}