-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.54 KB
/
package.json
File metadata and controls
66 lines (66 loc) · 1.54 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
{
"name": "starkdown",
"version": "4.0.2",
"description": "Tiny <3kb Markdown parser written, almost as fast and smart as Tony Stark",
"type": "module",
"sideEffects": false,
"exports": {
".": "./dist/index.js",
"./*": "./dist/*"
},
"engines": {
"node": ">=18"
},
"scripts": {
"build": "del-cli dist && tsc",
"build:docs": "typedoc",
"lint": "tsc --noEmit && eslint ./src",
"test": "vitest run",
"test:ui": "vitest --ui",
"test:watch": "vitest",
"prettier:fix-all": "prettier --write \"{src,test}/**/*.ts\" \"*.{md,json}\"",
"release": "npm run lint && npm run build && np"
},
"devDependencies": {
"@cycraft/eslint": "^0.4.3",
"@cycraft/tsconfig": "^0.1.2",
"@vitest/ui": "^3.0.6",
"del-cli": "^6.0.0",
"np": "^10.2.0",
"typedoc": "^0.27.7",
"vitest": "^3.0.6"
},
"files": [
"dist"
],
"keywords": [
"markdown",
"snarkdown",
"starkdown",
"markdown-it",
"gfm",
"md",
"html",
"parser"
],
"author": "CyCraft (https://cycraft.co)",
"funding": "https://github.com/sponsors/mesqueeb",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/cycraft/starkdown.git"
},
"homepage": "https://github.com/cycraft/starkdown#readme",
"bugs": "https://github.com/cycraft/starkdown/issues",
"authors": [
"Jason Miller <jason@developit.ca>",
"Luca Ban - Mesqueeb"
],
"typedocOptions": {
"entryPoints": [
"src/index.ts"
],
"out": "docs/dist",
"skipErrorChecking": true
}
}