-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.77 KB
/
package.json
File metadata and controls
64 lines (64 loc) · 1.77 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
{
"name": "@mdfriday/shortcode",
"version": "0.3.0",
"description": "A shortcode compiler for markdown content, supporting function and template shortcodes, nested shortcodes and frontmatter",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist",
"README.md",
"LICENSE"
],
"scripts": {
"build": "tsc",
"build-css": "tailwindcss -i ./src/styles/input.css -o ./dist/output.css",
"build-css:watch": "tailwindcss -i ./src/styles/input.css -o ./dist/output.css --watch",
"build-css:prod": "tailwindcss -i ./src/styles/input.css -o ./dist/output.css --minify",
"start": "ts-node src/compiler/index.ts",
"dev": "ts-node-dev --respawn src/compiler/index.ts",
"test": "jest",
"test:watch": "jest --watch",
"clean": "rimraf dist",
"prepare": "npm run clean && npm run build",
"prepublishOnly": "npm test"
},
"keywords": [
"markdown",
"shortcode",
"compiler",
"obsidian",
"frontmatter",
"parser"
],
"author": "sunwei",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/mdfriday/shortcode.git"
},
"bugs": {
"url": "https://github.com/mdfriday/shortcode/issues"
},
"homepage": "https://github.com/mdfriday/shortcode#readme",
"devDependencies": {
"@types/jest": "^29.5.14",
"@types/node": "^22.13.9",
"jest": "^29.7.0",
"rimraf": "^5.0.0",
"ts-jest": "^29.2.6",
"ts-node": "^10.9.2",
"ts-node-dev": "^2.0.0",
"typescript": "^5.8.2",
"tailwindcss": "^4.1.8"
},
"publishConfig": {
"access": "public"
},
"dependencies": {
"@mdfriday/text-template": "^0.1.3",
"highlight.js": "^11.10.0",
"marked": "^14.1.3",
"marked-highlight": "^2.2.0",
"marked-katex-extension": "^5.1.2"
}
}