-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 1.8 KB
/
Copy pathpackage.json
File metadata and controls
75 lines (75 loc) · 1.8 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
{
"name": "remark-react-liquid-tag",
"version": "1.0.0",
"description": "remark react plugin for liquid tag support",
"type": "module",
"main": "./dist/plugin.cjs",
"module": "./dist/plugin.js",
"types": "./dist/plugin.d.ts",
"exports": {
".": {
"import": "./dist/plugin.js",
"require": "./dist/plugin.cjs",
"types": "./dist/plugin.d.ts"
}
},
"files": [
"dist"
],
"scripts": {
"build": "vite build",
"lint": "biome check .",
"format": "biome format --write .",
"prepare": "npm run lint && npm run build",
"test": "vitest run --coverage"
},
"repository": {
"type": "git",
"url": "git+https://github.com/alfredosalzillo/remark-react-liquid-tag.git"
},
"keywords": [
"remark",
"react",
"liquid-tag",
"dev-to",
"remark-plugin"
],
"author": "Alfredo Salzillo",
"license": "ISC",
"bugs": {
"url": "https://github.com/alfredosalzillo/remark-react-liquid-tag/issues"
},
"funding": {
"url": "https://github.com/sponsors/alfredosalzillo"
},
"homepage": "https://github.com/alfredosalzillo/remark-react-liquid-tag#readme",
"dependencies": {
"mdast-util-to-string": "^4.0.0",
"react": ">=18",
"unified": "^11.0.5",
"unist": "^0.0.1",
"unist-util-map": "^4.0.0"
},
"devDependencies": {
"@biomejs/biome": "2.4.6",
"@types/node": "^24.12.2",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"@vitest/coverage-v8": "^4.1.4",
"dedent": "^1.7.2",
"react-dom": "^19.2.4",
"rehype-react": "^8.0.0",
"remark-parse": "^11.0.0",
"remark-rehype": "^11.1.2",
"typescript": "6.0.2",
"unplugin-dts": "^1.0.0-beta.6",
"vite": "^8.0.0",
"vitest": "^4.1.4"
},
"peerDependencies": {
"react": ">=18"
},
"volta": {
"node": "24.13.0"
}
}