generated from JDIZM/vite-node-ts-starter
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.47 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.47 KB
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
{
"name": "csv-picker",
"version": "0.2.0",
"description": "",
"main": "dist/src/index.cjs",
"module": "dist/src/index.esm.js",
"bin": {
"csv-picker": "./dist/src/index.cjs"
},
"scripts": {
"dev": "npx vite-node ./src/index.ts",
"lint": "eslint . --ext .ts,.tsx --max-warnings 0",
"format": "prettier -w '**/*.{js,ts,mjs,cjs,json,tsx,jsx}'",
"format:check": "prettier --check '**/*.{js,ts,mjs,cjs,json,tsx,jsx}'",
"tsc:check": "tsc -p tsconfig.json --noEmit",
"build": "npm run tsc:check && rm -rf dist && node build.mjs",
"test": "vitest --coverage"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@types/cli-progress": "^3.11.0",
"@types/node": "^20.2.1",
"@typescript-eslint/eslint-plugin": "^5.57.0",
"@typescript-eslint/parser": "^5.57.0",
"@vitest/coverage-c8": "^0.32.0",
"cac": "^6.7.14",
"chalk": "^4.1.2",
"esbuild": "^0.18.1",
"eslint": "^8.37.0",
"eslint-config-prettier": "^8.8.0",
"eslint-import-resolver-alias": "^1.1.2",
"eslint-import-resolver-typescript": "^3.5.5",
"eslint-plugin-import": "^2.27.5",
"prettier": "^2.8.7",
"typescript": "^5.0.4",
"vite-node": "^0.31.1",
"vitest": "^0.31.1"
},
"files": [
"dist"
],
"volta": {
"node": "16.18.1"
},
"exports": {
".": {
"import": "./dist/src/index.esm.js",
"require": "./dist/src/index.cjs"
}
},
"dependencies": {
"cli-progress": "^3.12.0"
}
}