-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
65 lines (65 loc) · 1.93 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
{
"name": "@tsdevau/codewars-kata-archiver",
"version": "3.0.2",
"description": "An app originally intended to generate, format & output a Codewars.com Kata description as a Markdown file. Actually evolved into an app that imports & updates your completed katas with your formatted solution/s & tests for each completed language. All files are placed in an organised file structure. Can be used to import one, many or additional languages for existing completed Codewars.com Katas",
"keywords": [
"Codewars",
"Kata Solutions",
"Markdown",
"json2md"
],
"bugs": {
"url": "https://github.com/tsdevau/codewars-kata-archiver/issues",
"email": "[email protected]"
},
"repository": {
"type": "git",
"url": "https://github.com/tsdevau/codewars-kata-archiver.git"
},
"license": "MIT",
"author": {
"name": "tsdevau",
"email": "[email protected]",
"url": "https://tsdev.au/codewars-archiver/",
"github": "https://github.com/tsdevau",
"linkedin": "https://www.linkedin.com/in/tsdevau/",
"twitter": "https://twitter.com/tsdev_au"
},
"type": "module",
"main": "./dist/app.js",
"types": "./src/types.d.ts",
"bin": {
"k2m": "./dist/app.js"
},
"files": [
"src",
"README.md",
"LICENSE",
"CHANGELOG.md",
"src/types.d.ts"
],
"scripts": {
"bl": "tsc --build && pnpm link -g",
"build": "tsc --build",
"k2m": "node ./dist/src/app.js",
"test": "pnpm vitest"
},
"dependencies": {
"cheerio": "1.0.0-rc.12",
"dotenv": "^16.4.5",
"json2md": "^2.0.1",
"node-fetch": "^3.3.2",
"puppeteer": "^22.10.0"
},
"devDependencies": {
"@types/cheerio": "^0.22.35",
"@types/json2md": "^1.5.4",
"@types/node": "^20.12.12",
"@typescript-eslint/eslint-plugin": "^7.11.0",
"@typescript-eslint/parser": "^7.11.0",
"esbuild": "^0.21.4",
"eslint": "^9.3.0",
"prettier": "^3.2.5",
"prettier-plugin-packagejson": "^2.5.0"
}
}