-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.43 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
{
"name": "svelte-retag",
"version": "1.7.0",
"description": "Light DOM custom element wrapper for Svelte 3 and 4 with slots, context and Vite HMR support",
"main": "index.js",
"types": "./types/index.d.ts",
"scripts": {
"test": "npm run eslint && vitest run",
"vitest": "vitest run",
"eslint": "eslint index.js tests/*",
"build": "tsc --emitDeclarationOnly",
"bump:patch": "npm version patch",
"bump:minor": "npm version minor",
"pub": "npm run test && npm run eslint && npm run build && git push --follow-tags && npm publish"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/patricknelson/svelte-retag.git"
},
"peerDependencies": {
"svelte": "^3.19.0 || ^4.0.0"
},
"devDependencies": {
"@sveltejs/adapter-auto": "^2.1.1",
"@sveltejs/kit": "^1.30.4",
"eslint": "^8.57.0",
"eslint-plugin-svelte": "^2.41.0",
"jsdom": "^22.1.0",
"svelte": "^4.2.18",
"typescript": "^5.5.2",
"vite": "^4.5.3",
"vitest": "^0.25.8"
},
"type": "module",
"keywords": [
"svelte",
"custom",
"elements",
"web",
"components",
"svelte-tag",
"tag",
"retag"
],
"author": "Patrick Nelson",
"license": "MIT",
"publishConfig": {
"registry": "https://registry.npmjs.org"
},
"bugs": {
"url": "https://github.com/patricknelson/svelte-retag/issues"
},
"homepage": "https://github.com/patricknelson/svelte-retag#readme"
}