-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.46 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
{
"name": "dumping",
"version": "0.0.9",
"license": "Apache-2.0",
"main": "./out/main.js",
"files": [
"./out"
],
"bin": {
"dumping": "./out/main.js"
},
"scripts": {
"start": "node ./out/main.js",
"dev": "rimraf ./out && pnpm --stream --parallel /^dev:.*$/",
"dev:build": "pnpm run build --watch",
"dev:run": "nodemon",
"build": "tsc ./src/main.ts --outDir ./out",
"esbuild": "esbuild ./src/main.ts --platform=node --format=cjs --external:./node_modules/* --bundle --outfile=./out/main.js",
"test": "vitest --silent=false",
"check": "pnpm --stream --parallel /^check:.*$/",
"check:tsc": "tsc",
"check:format": "pnpm run format --check",
"check:lint": "pnpm run lint",
"fix": "pnpm --stream --parallel /^fix:.*$/",
"fix:format": "pnpm run format --write",
"fix:lint": "pnpm run lint --fix",
"format": "prettier ./src",
"lint": "eslint"
},
"dependencies": {
"commander": "^12.0.0",
"csv-parse": "^5.5.5"
},
"devDependencies": {
"@types/node": "^20.12.7",
"esbuild": "^0.20.2",
"eslint": "^9.1.1",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-sonarjs": "^0.25.1",
"eslint-plugin-strict-dependencies": "^1.3.5",
"eslint-plugin-unused-imports": "^3.1.0",
"nodemon": "^3.1.0",
"prettier": "^3.2.5",
"rimraf": "^5.0.5",
"typescript": "^5.4.5",
"typescript-eslint": "^7.7.1",
"vitest": "^1.5.2"
}
}