-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 1.84 KB
/
package.json
File metadata and controls
67 lines (67 loc) · 1.84 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
{
"name": "@codemovie/code-movie-markdown-plugins",
"version": "2.1.0",
"description": "Code.Movie plugin for Marked and markdown-it",
"keywords": [
"highlight",
"syntax",
"animation",
"morph",
"diff",
"code",
"plugin",
"marked",
"markedjs",
"marked.js",
"markdownit",
"markdown-it"
],
"type": "module",
"exports": {
"./marked": {
"import": "./dist/marked.js"
},
"./markdown-it": {
"import": "./dist/markdown-it.js"
}
},
"scripts": {
"lint": "eslint ./src ./test",
"build": "esbuild src/marked.js src/markdown-it.js --bundle --metafile=meta.json --minify --format=esm --outdir=dist",
"dev": "esbuild src/marked.js src/markdown-it.js --bundle --metafile=meta.json --format=esm --outdir=dist --watch",
"test:marked": "node test/index.js --marked",
"test:markdown-it": "node test/index.js --markdown-it",
"test": "npm run test:marked && npm run test:markdown-it",
"demo": "npm install && npm run build && npx serve",
"prepareRelease": "npm run lint && npm run test && npm run build",
"release": "npm run prepareRelease && release-it"
},
"author": "peter@peterkroener.de",
"license": "MIT",
"dependencies": {
"json5": "^2.2.3"
},
"devDependencies": {
"esbuild": "^0.25.00",
"eslint-config-prettier": "^10.0.0",
"eslint": "^9.0.0",
"markdown-it": "^14.1.0",
"marked": "^16.0.0",
"prettier": "^3.3.0",
"release-it": "^19.0.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/CodeMovie/code-movie-markdown-plugins.git"
},
"bugs": {
"url": "https://github.com/CodeMovie/code-movie-markdown-plugins/issues"
},
"homepage": "https://github.com/CodeMovie/code-movie-markdown-plugins#readme",
"publishConfig": {
"access": "public"
},
"volta": {
"node": "23.7.0"
}
}