-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
78 lines (78 loc) · 2.21 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
{
"name": "svelte-purify",
"description": "💎 Safe html expansion for Svelte with DOMPurify",
"version": "2.0.5",
"main": "dist/index.js",
"type": "module",
"license": "MIT",
"author": {
"name": "jill64",
"email": "[email protected]",
"url": "https://github.com/jill64",
"image": "https://avatars.githubusercontent.com/u/143883742?v=4"
},
"bugs": "https://github.com/jill64/svelte-purify/issues",
"homepage": "https://github.com/jill64/svelte-purify#readme",
"files": [
"dist"
],
"exports": {
"./browser-only": {
"types": "./dist/browser-only/index.d.ts",
"svelte": "./dist/browser-only/index.js",
"default": "./dist/browser-only/index.js"
},
".": {
"types": "./dist/index.d.ts",
"svelte": "./dist/index.js",
"default": "./dist/index.js"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/jill64/svelte-purify.git",
"image": "https://opengraph.githubassets.com/30ae562d81fbf35cf2a89a3bcb9af4b608857362c8cb357d896095d9c207a2ca/jill64/svelte-purify"
},
"keywords": [
"dom",
"html",
"library",
"node",
"sanitize",
"svelte",
"xss"
],
"prettier": "@jill64/prettier-config",
"scripts": {
"dev": "vite dev",
"build": "vite build && bun run package",
"preview": "bun run build && vite preview",
"prepack": "bun run build",
"package": "svelte-kit sync && bunx @sveltejs/package && bunx publint",
"check": "svelte-kit sync && bunx svelte-check",
"lint": "bun run check && bunx eslint .",
"format": "bunx psvx",
"test": "playwright test"
},
"peerDependencies": {
"svelte": "^5.0.0"
},
"devDependencies": {
"@jill64/eslint-config-svelte": "2.2.8",
"@jill64/npm-demo-layout": "2.0.19",
"@jill64/playwright-config": "3.0.0",
"@jill64/prettier-config": "1.0.0",
"@jill64/sentry-sveltekit-edge": "2.0.7",
"@jill64/universal-sanitizer": "1.4.3",
"@playwright/test": "1.51.0",
"@sveltejs/adapter-vercel": "5.6.3",
"@sveltejs/kit": "2.20.2",
"svelte": "5.23.1",
"typescript": "5.8.2",
"vite": "6.2.3",
"@sveltejs/vite-plugin-svelte": "5.0.3"
},
"dependencies": {
"universal-dompurify": "1.0.24"
}
}