forked from pablo-abc/svelte-markdown
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
73 lines (73 loc) · 1.81 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
{
"name": "svelte-marked",
"description": "A markdown renderer for Svelte.",
"version": "0.6.0",
"packageManager": "[email protected]",
"engines": {
"node": ">=18"
},
"main": "dist/sveltemarkdown.js",
"module": "dist/sveltemarkdown.es.js",
"jsnext:main": "dist/sveltemarkdown.es.js",
"svelte": "src/index.js",
"exports": {
".": {
"types": "./types/index.d.ts",
"svelte": "./src/index.js"
},
"./package.json": "./package.json"
},
"type": "module",
"files": [
"dist",
"src",
"types"
],
"license": "MIT",
"author": "Pablo Berganza <[email protected]>",
"repository": {
"type": "git",
"url": "git+https://github.com/ildella/svelte-marked.git"
},
"homepage": "https://github.com/ildella/svelte-marked",
"scripts": {
"build": "vite build",
"dev": "vite build --watch",
"lint": "eslint . --max-warnings 2",
"test": "vitest run",
"test:watch": "vitest watch"
},
"devDependencies": {
"@eslint/js": "9.14.0",
"@stylistic/eslint-plugin-js": "2.10.1",
"@sveltejs/vite-plugin-svelte": "4.0.0",
"@testing-library/jest-dom": "6.6.3",
"@testing-library/svelte": "5.2.4",
"eslint": "9.14.0",
"eslint-plugin-svelte": "2.46.0",
"eslint-plugin-vitest": "0.5.4",
"globals": "15.12.0",
"jsdom": "25.0.1",
"prettier": "3.3.3",
"rollup-plugin-analyzer": "4.0.0",
"rollup-plugin-filesize": "10.0.0",
"rollup-plugin-terser": "7.0.2",
"sirv-cli": "3.0.0",
"svelte": "5.1.14",
"svelte-eslint-parser": "0.43.0",
"vite": "5.4.11",
"vitest": "2.1.4"
},
"dependencies": {
"@types/marked": "6.0.0",
"github-slugger": "2.0.0",
"marked": "15.0.0"
},
"peerDependencies": {
"svelte": "^4.0.0"
},
"resolutions": {
"tough-cookie": "next"
},
"types": "./types/index.d.ts"
}