-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
105 lines (105 loc) · 3.65 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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
{
"name": "markdown-code-example-inserter",
"version": "3.0.3",
"description": "Syncs code examples with markdown documentation.",
"keywords": [
"automatic",
"code",
"examples",
"insert",
"inserter",
"interpolator",
"markdown",
"readme",
"snippet"
],
"homepage": "https://github.com/electrovir/markdown-code-example-inserter",
"bugs": {
"url": "https://github.com/electrovir/markdown-code-example-inserter/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/electrovir/markdown-code-example-inserter.git"
},
"license": "(MIT or CC0 1.0)",
"author": {
"name": "electrovir",
"url": "https://github.com/electrovir"
},
"type": "module",
"main": "src/index.ts",
"module": "src/index.ts",
"types": "src/index.ts",
"bin": {
"md-code": "bin.js"
},
"scripts": {
"compile": "virmator compile",
"docs": "virmator docs",
"format": "virmator format",
"lint": "virmator lint fix",
"publish": "virmator publish npm run test:all",
"test": "npm run compile && virmator test node",
"test:all": "npm test && concurrently --colors --kill-others-on-fail -c auto --names spelling,format,docs,deps,lint \"npm run test:spelling\" \"npm run test:format\" \"npm run test:docs\" \"npm run test:deps\" \"npm run test:lint\"",
"test:deps": "virmator deps check",
"test:docs": "virmator docs check",
"test:format": "virmator format check",
"test:lint": "virmator lint",
"test:spelling": "virmator spellcheck",
"test:update": "npm run test update"
},
"dependencies": {
"@augment-vir/assert": "^31.0.1",
"@augment-vir/common": "^31.0.1",
"@augment-vir/node": "^31.0.1",
"glob": "^11.0.0",
"rehype-parse": "^9.0.1",
"remark-parse": "^11.0.0",
"remark-rehype": "^11.1.1",
"tsx": "*",
"typescript": "^5.7.2",
"unified": "^11.0.5"
},
"devDependencies": {
"@augment-vir/test": "^31.0.1",
"@eslint/eslintrc": "^3.2.0",
"@eslint/js": "9.16.0",
"@stylistic/eslint-plugin": "^2.12.0",
"@stylistic/eslint-plugin-ts": "^2.12.0",
"@types/hast": "^3.0.4",
"@types/mdast": "^4.0.4",
"@types/node": "^22.10.1",
"@types/unist": "^3.0.3",
"@typescript-eslint/eslint-plugin": "^8.18.0",
"c8": "^10.1.2",
"cspell": "^8.16.1",
"dependency-cruiser": "^16.7.0",
"esbuild": "^0.24.0",
"eslint": "9.16.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-jsdoc": "^50.6.0",
"eslint-plugin-monorepo-cop": "^1.0.2",
"eslint-plugin-playwright": "^2.1.0",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-require-extensions": "^0.1.3",
"eslint-plugin-sonarjs": "^3.0.1",
"eslint-plugin-unicorn": "^56.0.1",
"istanbul-smart-text-reporter": "^1.1.5",
"markdown-code-example-inserter": "^3.0.2",
"npm-check-updates": "^17.1.11",
"prettier": "3.3.3",
"prettier-plugin-interpolated-html-tags": "^2.0.0",
"prettier-plugin-jsdoc": "^1.3.0",
"prettier-plugin-multiline-arrays": "^3.0.6",
"prettier-plugin-organize-imports": "^4.1.0",
"prettier-plugin-packagejson": "^2.5.6",
"prettier-plugin-sort-json": "^4.0.0",
"prettier-plugin-toml": "^2.0.1",
"typedoc": "^0.27.4",
"typescript-eslint": "^8.18.0",
"virmator": "^13.10.5"
},
"engines": {
"node": ">=22"
}
}