-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 1.89 KB
/
package.json
File metadata and controls
71 lines (71 loc) · 1.89 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
{
"name": "md-split",
"version": "0.0.2",
"type": "commonjs",
"description": "simple markdown file spliter",
"main": "dist/index.js",
"types": "types/index.d.ts",
"bin": {
"md-split": "./dist/cli.js"
},
"scripts": {
"md-split": "ts-node src/cli.ts",
"start": "ts-node src/index.ts",
"build": "tsc",
"prepublishOnly": "npm run test && npm run makeReadme && npm run build",
"types": "tsc --noEmit",
"test": "mocha",
"pub": "npm publish --registry https://registry.npmjs.org",
"unpub": "npm unpublish --registry https://registry.npmjs.org md-split@0.0.2-alpha10 --force",
"vl": "npm view md-split versions --registry https://registry.npmjs.org & npm view md-split versions",
"makeReadme": "npm run md-split README.multi.md README.{tag}.md cn README.md"
},
"files": [
"dist",
"types"
],
"exports": {
".": {
"import": "./dist/index.mjs",
"require": "./dist/index.js",
"types": "./types/index.d.ts"
},
"./package.json": "./package.json"
},
"author": {
"name": "Max Zhou",
"email": "maxzhou0@outlook.com",
"url": "https://github.com/maxzhou0"
},
"repository": {
"type": "git",
"url": "https://github.com/maxzhou0/md-split.git"
},
"keywords": [
"typescript",
"markdown",
"split"
],
"license": "MIT",
"devDependencies": {
"@rollup/plugin-node-resolve": "13.1.3",
"@types/chai": "^4.3.6",
"@types/markdown-it": "^13.0.6",
"@types/mocha": "^10.0.2",
"@types/node": "^20.8.10",
"assert": "^2.1.0",
"chai": "^4.3.10",
"mocha": "^10.2.0",
"rollup": "2.66.1",
"rollup-plugin-terser": "7.0.2",
"rollup-plugin-typescript2": "0.27.1",
"ts-node": "^10.9.1",
"typescript": "^5.2.2"
},
"dependencies": {
"@textlint/markdown-to-ast": "^13.4.0",
"markdown-it": "^13.0.2",
"remark": "^15.0.1",
"remark-parse": "^11.0.0"
}
}