forked from andi23rosca/solid-markdown
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
109 lines (109 loc) · 2.82 KB
/
package.json
File metadata and controls
109 lines (109 loc) · 2.82 KB
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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
{
"name": "solid-markdown",
"version": "2.0.14",
"description": "Markdown renderer for solid-js",
"license": "MIT",
"keywords": [
"remark",
"unified",
"markdown",
"commonmark",
"gfm",
"ast",
"solid",
"solid-js",
"solid-js-component",
"component"
],
"author": "Andi Rosca <andi23rosca@gmail.com>",
"contributors": [
{
"name": "Andi Rosca",
"url": "https://github.com/andi23rosca"
},
{
"name": "High1",
"url": "https://github.com/high1"
},
{
"name": "Patrick Heneise",
"url": "https://github.com/patrickheneise"
}
],
"repository": {
"type": "git",
"url": "git+https://github.com/andi23rosca/solid-markdown.git"
},
"homepage": "https://github.com/andi23rosca/solid-markdown#readme",
"bugs": {
"url": "https://github.com/andi23rosca/solid-markdown/issues"
},
"files": [
"dist"
],
"private": false,
"sideEffects": false,
"type": "module",
"main": "./dist/index.js",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"browser": {},
"exports": {
"solid": "./dist/index.jsx",
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
}
},
"typesVersions": {},
"scripts": {
"dev": "vite serve dev",
"build": "tsup",
"test": "concurrently pnpm:test:*",
"test:client": "vitest",
"test:ssr": "pnpm run test:client --mode ssr",
"prepublishOnly": "pnpm build",
"format": "prettier --ignore-path .gitignore -w \"src/**/*.{js,ts,json,css,tsx,jsx}\" \"dev/**/*.{js,ts,json,css,tsx,jsx}\"",
"lint": "concurrently pnpm:lint:*",
"lint:code": "eslint --ignore-path .gitignore --max-warnings 0 src/**/*.{js,ts,tsx,jsx}",
"lint:types": "tsc --noEmit",
"update-deps": "pnpm up -Li"
},
"dependencies": {
"comma-separated-tokens": "^2.0.3",
"micromark": "^4.0.2",
"property-information": "^6.5.0",
"remark-parse": "^11.0.0",
"remark-rehype": "^11.1.1",
"space-separated-tokens": "^2.0.2",
"style-to-object": "^0.3.0",
"unified": "^11.0.5",
"unist-util-visit": "^4.1.2",
"vfile": "^6.0.3"
},
"peerDependencies": {
"solid-js": "^1.6.0"
},
"devDependencies": {
"@types/hast": "^2.3.10",
"@types/unist": "^3.0.3",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
"concurrently": "^8.2.2",
"esbuild": "^0.18.20",
"esbuild-plugin-solid": "^0.5.0",
"eslint": "^8.57.1",
"eslint-plugin-eslint-comments": "^3.2.0",
"eslint-plugin-no-only-tests": "^3.3.0",
"jsdom": "^22.1.0",
"prettier": "3.0.0",
"remark-gfm": "^4.0.1",
"solid-js": "^1.9.5",
"tsup": "^7.3.0",
"tsup-preset-solid": "^2.2.0",
"typescript": "^5.8.2",
"vite": "^4.5.9",
"vite-plugin-solid": "^2.11.6",
"vitest": "^0.33.0"
}
}