-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.16 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.16 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
{
"name": "md-to-tex",
"version": "0.0.3",
"description": "Convert Md to Tex",
"bin": "dist/cli.js",
"type": "module",
"targets": {
"cli": {
"source": "src/cli.ts",
"context": "node",
"outputFormat": "esmodule"
},
"main": {
"source": "src/index.ts",
"context": "node",
"outputFormat": "commonjs",
"isLibrary": true
},
"module": {
"source": "src/index.ts",
"context": "node",
"outputFormat": "esmodule",
"isLibrary": true
},
"types": {
"distDir": "dist/types.d.ts"
}
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"watch": "parcel watch",
"build": "parcel build",
"prettier": "prettier --write '**/*.{js,ts}'",
"start": "node dist/cli.js"
},
"author": "Ben Seitz",
"license": "MIT",
"devDependencies": {
"@parcel/packager-ts": "^2.8.3",
"@parcel/transformer-typescript-types": "^2.8.3",
"@types/node": "^18.14.6",
"parcel": "^2.13.3",
"prettier": "^2.8.4",
"typescript": "^4.9.5"
},
"dependencies": {
"@types/marked": "^4.0.8",
"commander": "^10.0.0",
"marked": "^4.2.12"
}
}