-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
95 lines (95 loc) · 2.35 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
{
"name": "globcat",
"version": "3.1.1",
"description": "Concatenate files from command line with glob pattern.",
"type": "module",
"keywords": [
"glob",
"wildcard",
"file pattern",
"concatenate",
"command line"
],
"files": [
"dist"
],
"main": "./dist/globcat.cjs",
"module": "./dist/globcat.js",
"types": "./dist/globcat.d.ts",
"exports": {
".": {
"import": "./dist/globcat.js",
"require": "./dist/globcat.cjs"
}
},
"bin": {
"globcat": "./dist/globcat-bin.cjs"
},
"scripts": {
"build": "tsc && vite build",
"test": "vitest",
"test:watch": "vitest --watch",
"coverage": "vitest run --coverage",
"format": "prettier --write .",
"lint": "eslint . --ext .ts,.tsx",
"ci": "run-s lint coverage build",
"prepublishOnly": "pnpm run ci",
"prepare": "husky install"
},
"dependencies": {
"command-line-args": "^5.2.1",
"command-line-usage": "^7.0.1",
"glob": "^10.3.10"
},
"devDependencies": {
"@rollup/plugin-node-resolve": "^15.2.3",
"@types/async": "^3.2.24",
"@types/command-line-args": "^5.2.3",
"@types/command-line-usage": "^5.0.4",
"@types/glob": "^8.1.0",
"@types/node": "^20.10.4",
"@typescript-eslint/eslint-plugin": "^6.14.0",
"@typescript-eslint/parser": "^6.14.0",
"@vitest/coverage-v8": "^1.0.4",
"eslint": "^8.55.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.0.1",
"husky": "^8.0.3",
"is-stream": "^3.0.0",
"lint-staged": "^15.2.0",
"npm-run-all": "^4.1.5",
"prettier": "^3.1.1",
"tsx": "^4.6.2",
"typescript": "^5.3.3",
"vite": "^5.0.9",
"vite-plugin-dts": "^3.6.4",
"vitest": "^1.0.4"
},
"bugs": {
"url": "https://github.com/smonn/globcat/issues"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/smonn/globcat.git"
},
"engines": {
"node": ">=16"
},
"homepage": "https://github.com/smonn/globcat#readme",
"author": "Simon Ingeson <[email protected]> (https://www.smonn.se/)",
"license": "MIT",
"lint-staged": {
".{js,mjs,cjs,ts,mts,cts,jsx,tsx}": [
"eslint --fix"
],
".{ts,tsx,d.ts,cts,d.cts,mts,d.mts}": [
"tsc --noEmit"
],
"*.{js,mjs,cjs,ts,mts,cts,jsx,tsx}": [
"vitest run"
],
"*": [
"prettier --ignore-unknown --write"
]
}
}