-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
68 lines (68 loc) · 2.12 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
{
"name": "programming-challenges",
"version": "1.0.0",
"description": "programming-challenges brings programming exercises and challenges to improve your algorithmic logic.",
"private": true,
"type": "module",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/theoludwig/programming-challenges"
},
"engines": {
"node": ">=20.11.0",
"npm": ">=10.0.0"
},
"main": "build/index.js",
"bin": "build/index.js",
"scripts": {
"start": "node --enable-source-maps build/index.js",
"build": "swc ./cli --out-dir ./build --strip-leading-paths --delete-dir-on-start",
"build:dev": "swc ./cli --out-dir ./build --strip-leading-paths --delete-dir-on-start --watch",
"lint:typescript": "tsc --noEmit",
"lint:editorconfig": "editorconfig-checker",
"lint:markdown": "markdownlint-cli2",
"lint:eslint": "eslint ./cli --max-warnings 0",
"lint:prettier": "prettier . --check",
"test": "cross-env NODE_ENV=test node --enable-source-maps --test \"build/**/*.test.js\""
},
"dependencies": {
"chalk": "5.3.0",
"clipanion": "3.2.1",
"date-and-time": "3.6.0",
"execa": "9.5.1",
"log-symbols": "6.0.0",
"ora": "8.1.1",
"replace-in-file": "8.2.0",
"table": "6.8.2",
"typanion": "3.14.0",
"validate-npm-package-name": "6.0.0"
},
"devDependencies": {
"@swc/cli": "0.5.0",
"@swc/core": "1.9.2",
"@tsconfig/strictest": "2.0.5",
"@types/mock-fs": "4.13.4",
"@types/ms": "0.7.34",
"@types/node": "22.9.0",
"@types/sinon": "17.0.3",
"@types/validate-npm-package-name": "4.0.2",
"cross-env": "7.0.3",
"editorconfig-checker": "6.0.0",
"eslint": "9.15.0",
"eslint-config-conventions": "17.0.1",
"eslint-plugin-import-x": "4.4.2",
"eslint-plugin-promise": "7.1.0",
"eslint-plugin-unicorn": "56.0.0",
"get-stream": "9.0.1",
"globals": "15.12.0",
"markdownlint-cli2": "0.15.0",
"markdownlint-rule-relative-links": "3.0.0",
"mock-fs": "5.4.1",
"ms": "2.1.3",
"prettier": "3.3.3",
"sinon": "19.0.2",
"typescript": "5.6.3",
"typescript-eslint": "8.14.0"
}
}