-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
52 lines (52 loc) · 1.25 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
{
"name": "parcel-transformer-markdown",
"version": "3.0.1",
"description": "Parcel plugin for loader markdown string & Markdown transformer.",
"author": "kenny wong <wowohoo@qq.com>",
"homepage": "https://jaywcjlove.github.io/parcel-plugin-markdown-string",
"funding": "https://jaywcjlove.github.io/#/sponsor",
"license": "MIT",
"main": "./lib/index.js",
"module": "./esm/index.js",
"scripts": {
"watch": "tsbb watch src/*.ts --useBabel",
"build": "tsbb build src/*.ts --useBabel",
"test": "rm -rf .parcel-cache && rm -rf dist && node test/index.cjs"
},
"keywords": [
"parcel",
"parcel-bundler",
"parcel-plugin",
"bundler",
"plugin",
"transformer",
"markdown"
],
"files": [
"esm",
"lib",
"src"
],
"repository": {
"type": "git",
"url": "https://github.com/jaywcjlove/parcel-plugin-markdown-string.git"
},
"peerDependencies": {
"parcel": "^2.2.0"
},
"devDependencies": {
"@parcel/config-default": "^2.3.2",
"@parcel/core": "^2.3.2",
"tsbb": "^4.1.5"
},
"dependencies": {
"@babel/runtime": "^7.16.7",
"@parcel/plugin": "^2.2.0",
"@types/marked": "^5.0.0",
"marked": "^5.0.0"
},
"engines": {
"node": ">= 18.0.0",
"parcel": "^2.2.0"
}
}