-
-
Notifications
You must be signed in to change notification settings - Fork 48
/
package.json
57 lines (57 loc) · 1.54 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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
{
"name": "zero-md",
"version": "3.1.6",
"description": "Ridiculously simple zero-config markdown displayer",
"author": "Jason Lee <[email protected]>",
"scripts": {
"dev:docs": "vite docs",
"dev": "vite -c vite.config.js src",
"build:min": "terser -c -m --module dist/index.js > dist/index.min.js",
"build:tsc": "tsc src/lib/*.js --declaration --allowJs --emitDeclarationOnly --outDir dist/types",
"build": "vite build && npm run build:min && npm run build:tsc",
"package": "npm run check && npm run build && npx publint",
"check": "zx outdated.mjs",
"format": "prettier --write .",
"lint": "prettier --check . && eslint",
"test": "npm run lint && playwright test"
},
"devDependencies": {
"@eslint/js": "^9.1.1",
"@playwright/test": "^1.47.2",
"eslint": "^9.11.1",
"eslint-config-prettier": "^9.1.0",
"globals": "^15.9.0",
"prettier": "^3.3.3",
"terser": "^5.34.1",
"typescript": "^5.6.2",
"vite": "^5.4.8"
},
"type": "module",
"exports": {
".": {
"types": "./dist/types/index.d.ts",
"import": "./dist/index.js"
},
"./src/*.js": {
"types": "./dist/types/*.d.ts",
"import": "./src/lib/*.js"
}
},
"jsdelivr": "./dist/index.min.js",
"files": [
"dist",
"src/lib"
],
"license": "ISC",
"repository": "github:zerodevx/zero-md",
"homepage": "https://zerodevx.github.io/zero-md/",
"keywords": [
"webcomponents",
"customelements",
"markdown-to-html",
"marked",
"highlightjs",
"katex",
"mermaid"
]
}