-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.31 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
{
"name": "mrkdwny",
"version": "0.8.0",
"description": "Parser for turning markdown into HTML",
"private": false,
"keywords": [
"markdown",
"markdown-parser"
],
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"license": "MIT",
"contributors": [
"Mads Hougesen <mads@mhouge.dk> (https://mhouge.dk)"
],
"repository": {
"type": "git",
"url": "git+https://github.com/hougesen/mrkdwny.git"
},
"bugs": {
"url": "https://github.com/hougesen/mrkdwny/issues"
},
"homepage": "https://github.com/hougesen/mrkdwny#readme",
"scripts": {
"build": "tsc",
"build:clean": "tsc --build --clean",
"run:dev": "echo missing",
"run:build": "npm run build && node dist/index.js",
"test": "vitest --run",
"test:dev": "vitest",
"format": "prettier --ignore-path .gitignore --cache --write .",
"lint": "eslint .",
"lint:fix": "eslint --fix ."
},
"devDependencies": {
"@eslint/js": "^9.9.1",
"eslint": "^9.9.1",
"globals": "^15.9.0",
"picobench": "^0.0.3",
"prettier": "^3.3.1",
"typescript": "^5.4.5",
"typescript-eslint": "^8.4.0",
"vitest": "^2.0.4"
}
}