forked from tryfabric/mack
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) 路 1.14 KB
/
Copy pathpackage.json
File metadata and controls
52 lines (52 loc) 路 1.14 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
{
"name": "@bdb-dd/mack",
"repository": {
"type": "git",
"url": "https://github.com/bdb-dd/mack"
},
"version": "1.2.1",
"description": "Converts Markdown to Slack BlockKit Blocks",
"main": "build/src/index.js",
"types": "build/src/index.d.ts",
"scripts": {
"test": "jest",
"lint": "gts lint",
"clean": "gts clean",
"compile": "tsc",
"fix": "gts fix",
"prepare": "yarn run compile",
"pretest": "yarn run compile",
"posttest": "yarn run lint",
"release": "release-it"
},
"keywords": [
"markdown",
"parser",
"gfm",
"slack"
],
"author": "Instantish",
"license": "MIT",
"dependencies": {
"@slack/types": "^2.20.1",
"fast-xml-parser": "^4.5.6",
"marked": "^12.0.2"
},
"devDependencies": {
"@types/jest": "^30.0.0",
"@types/node": "^20.19.39",
"gts": "^7.0.0",
"jest": "^30.3.0",
"release-it": "^20.0.0",
"ts-jest": "^29.4.9",
"ts-node": "^10.9.2",
"typescript": "^5.9.3"
},
"resolutions": {
"cross-spawn": "^7.0.6",
"flatted": "^3.4.2",
"minimatch": "^3.1.5",
"picomatch": "^2.3.2",
"lodash": "^4.18.1"
}
}