-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.61 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.61 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
{
"name": "mdcode",
"version": "0.0.1",
"description": "TypeScript port of mdcode - Markdown code block authoring tool workspace",
"private": true,
"type": "module",
"scripts": {
"build": "pnpm --filter mdcode-ts build",
"dev": "pnpm --filter mdcode-ts dev",
"test": "pnpm -r test",
"test:watch": "pnpm --filter mdcode-ts test:watch",
"test:usage": "pnpm --filter usage test",
"test:usage:watch": "pnpm --filter usage test:watch",
"test:all": "pnpm test && pnpm test:usage",
"_lint:ts": "pnpm -r lint:ts",
"_lint": "pnpm -r lint",
"_lint:s": "pnpm -r lint:s",
"_lint:fix": "pnpm -r lint:fix"
},
"keywords": [
"markdown",
"code-blocks",
"documentation",
"authoring"
],
"author": "Adrian Elton-Browning",
"license": "ISC",
"packageManager": "pnpm@10.17.1",
"engines": {
"node": ">=22.0.0"
},
"devDependencies": {
"@commitlint/cli": "^19.5.0",
"@commitlint/config-conventional": "^19.5.0",
"@stylistic/eslint-plugin": "^1.5.4",
"@total-typescript/ts-reset": "^0.5.1",
"@types/node": "22.18.12",
"@typescript-eslint/eslint-plugin": "^6.19.1",
"@typescript-eslint/parser": "^6.19.1",
"eslint": "^8.47.0",
"eslint-plugin-deprecation": "^3.0.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^6.2.0",
"eslint-plugin-simple-import-sort": "^9.0.0",
"eslint-plugin-unicorn": "^54.0.0",
"eslint-plugin-unused-imports": "^3.0.0",
"humanize-duration": "^3.30.0",
"husky": "9.0.6",
"knip": "^5.64.2",
"lint-staged": "^15.2.10",
"typescript": "^5.9.3",
"zshy": "^0.4.2"
}
}