-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
37 lines (37 loc) · 1.01 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
{
"name": "typora-parser",
"version": "1.0.3",
"main": "./build/src/index.js",
"types": "./build/src/index.d.ts",
"bin": {
"typora-export": "./build/bin/typoraExport.js"
},
"author": "pegasis",
"repository": {
"type": "git",
"url": "https://github.com/PegasisForever/typora-parse.git"
},
"homepage": "https://github.com/PegasisForever/typora-parser#readme",
"license": "MIT",
"scripts": {
"watch": "tsc --watch",
"build": "tsc",
"dev": "node --enable-source-maps build/src/devmain.js",
"typora-export": "node --enable-source-maps build/bin/typoraExport.js",
"prepublish": "rm -r ./build && tsc"
},
"devDependencies": {
"@types/codemirror": "^5.60.5",
"@types/jsdom": "^16.2.13",
"@types/node": "^15.12.5",
"@typescript-eslint/eslint-plugin": "^4.31.2",
"@typescript-eslint/parser": "^4.31.2",
"eslint": "^7.32.0",
"typescript": "^4.3.5"
},
"dependencies": {
"commander": "^8.2.0",
"highlight.js": "^11.2.0",
"mathjax-full": "3"
}
}