-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 1.03 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
{
"name": "markdown-it-task-lists-ts",
"version": "1.0.3",
"description": "A TypeScript-first markdown-it plugin that converts GitHub-style task lists to HTML checkboxes",
"main": "dist/markdown-it-task-lists.js",
"types": "dist/markdown-it-task-lists.d.ts",
"scripts": {
"build": "tsc",
"test": "jest",
"prepublishOnly": "npm run build"
},
"keywords": [
"markdown-it",
"markdown-it-plugin",
"task-lists",
"todo",
"checkbox",
"typescript"
],
"author": "bartolli",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/bartolli/markdown-it-task-lists-ts.git"
},
"bugs": {
"url": "https://github.com/bartolli/markdown-it-task-lists-ts/issues"
},
"homepage": "https://github.com/bartolli/markdown-it-task-lists-ts#readme",
"peerDependencies": {
"markdown-it": "^14.1.0"
},
"devDependencies": {
"@types/markdown-it": "^13.0.7",
"@types/jest": "^29.5.11",
"jest": "^29.7.0",
"ts-jest": "^29.1.1",
"typescript": "^5.7.2"
}
}