-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
65 lines (65 loc) · 1.49 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": "@eckode/cli",
"version": "0.0.8",
"description": "CLI tool, written in TypeScript, for running @eckode scoped packages.",
"keywords": [
"eckode",
"webpack",
"typescript",
"JavaScript",
"CLI"
],
"author": "Jared Rethman <jaredrethman@gmail.com>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/eckode/cli.git"
},
"bugs": {
"url": "https://github.com/eckode/cli/issues"
},
"homepage": "https://github.com/eckode/cli",
"scripts": {
"build": "tsc",
"clean": "ts-node-esm ./src/clean.mjs",
"pkg": "tsc && ts-node-esm ./src/package.mjs"
},
"bin": {
"eckode": "./bin/eckode.mjs"
},
"engines": {
"node": ">=20.0.0",
"npm": ">=9"
},
"files": [
"bin",
"src",
"package.json",
".eslintrc.js",
"prettier.js",
"tsconfig.json"
],
"publishConfig": {
"access": "public"
},
"devDependencies": {
"@types/express": "^5.0.0",
"@types/node": "^22.10.1",
"@types/resolve-bin": "^0.4.3",
"@typescript-eslint/eslint-plugin": "^8.18.0",
"@typescript-eslint/parser": "^8.18.0",
"chalk": "^5.3.0",
"eslint": "^9.16.0",
"eslint-config-love": "^110.0.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-n": "^17.15.0",
"eslint-plugin-promise": "^7.2.1",
"jest": "^29.7.0",
"prettier": "^3.4.2",
"rimraf": "^6.0.1",
"ts-node": "^10.9.2",
"typescript": "~5.7.2"
},
"main": "./src/index.mjs",
"dependencies": {}
}