-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
71 lines (71 loc) · 1.7 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
{
"name": "pantsdown",
"author": "wallpants",
"type": "module",
"version": "0.0.0",
"license": "MIT",
"description": "Markdown to 'GitHub HTML' parser",
"repository": {
"type": "git",
"url": "git://github.com/wallpants/pantsdown.git"
},
"exports": {
"./styles.css": {
"types": "./src/css/styles.css.d.ts",
"bun": "./src/css/styles.css",
"import": "./src/css/styles.css"
},
".": {
"types": "./src/index.ts",
"bun": "./src/index.ts",
"import": "./src/index.ts"
}
},
"release": {
"branches": [
"main"
]
},
"config": {
"commitizen": {
"path": "@commitlint/cz-commitlint"
}
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
],
"rules": {
"body-max-line-length": [
0
]
}
},
"scripts": {
"commit": "cz",
"format": "prettier **/*.{md,ts,css,yml} -w",
"typecheck": "tsc",
"lint": "eslint . --ext ts --report-unused-disable-directives --max-warnings 0",
"check": "bun run typecheck && bun run lint",
"docs:build": "bun run docs/build.ts"
},
"dependencies": {
"github-slugger": "^2.0.0",
"highlight.js": "^11.11.1"
},
"devDependencies": {
"@commitlint/config-conventional": "^19.6.0",
"@commitlint/cz-commitlint": "^19.6.1",
"@happy-dom/global-registrator": "^16.3.0",
"@types/bun": "^1.1.14",
"@typescript-eslint/eslint-plugin": "^8.19.0",
"@typescript-eslint/parser": "^8.19.0",
"commitizen": "^4.3.1",
"commitlint": "^19.6.1",
"eslint": "^8.57.1",
"prettier": "^3.4.2",
"prettier-plugin-organize-imports": "^4.1.0",
"semantic-release": "^24.2.1",
"typescript": "5.7.2"
}
}