-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.13 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
{
"peerDependencies": {
"webpack": "*"
},
"type": "module",
"main": "index.js",
"esnext": "index.ts",
"types": "index.d.ts",
"homepage": "tradeterminal.io",
"name": "@MoreChickenDelivered/md-loader",
"scripts": {
"build": "yarn install && tsc -p ./tsconfig.json"
},
"version": "0.1.0",
"devDependencies": {
"@types/debug": "^4.1.12",
"@types/mdast": "^4.0.3",
"@types/node": "^20.11.2",
"@types/webpack": "^5.28.5",
"typescript": "^5.3.3"
},
"dependencies": {
"debug": "^4.3.4",
"mdast": "^3.0.0",
"remark": "^15.0.1",
"remark-parse": "^11.0.0",
"remark-stringify": "^11.0.0",
"schema-utils": "^4.2.0",
"unified": "^11.0.4",
"vfile": "^6.0.1"
},
"description": "Webpack Content/AST loader for Markdown (or fragments of)",
"repository": "git+https://github.com/MoreChickenDelivered/md-loader.git",
"author": "[email protected]",
"license": "Proprietary",
"packageManager": "[email protected]",
"yarnConfig": {
"nodeLinker": "pnp"
},
"files": [
"index.d.ts",
"index.js"
],
"publishConfig": {
"registry": "https://npm.pkg.github.com"
}
}