-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
71 lines (71 loc) · 1.75 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
{
"name": "multiplerun",
"version": "3.0.1",
"author": "SSen <[email protected]>",
"license": "MIT",
"repository": "github:rocket-hangar/multiplerun",
"bugs": "https://github.com/rocket-hangar/multiplerun/issues",
"homepage": "https://github.com/rocket-hangar/multiplerun",
"type": "commonjs",
"engines": {
"node": ">=12"
},
"publishConfig": {
"access": "public"
},
"main": "dist/main.js",
"types": "dist/main.d.ts",
"bin": {
"multiplerun": "./dist/bin.js"
},
"keywords": [
"terminal",
"iterm"
],
"files": [
"dist/**",
"README.md"
],
"scripts": {
"build": "rimraf dist && tsc",
"prepublishOnly": "npm run test",
"test": "vitest",
"coverage": "vitest run --coverage",
"format": "prettier --write \"**/*.{js,ts,tsx}\"",
"lint": "eslint \"**/*.{js,ts,tsx}\"",
"precommit": "lint-staged",
"prepare": "husky"
},
"lint-staged": {
"**/src/{**/*,*}.{ts,tsx}": [
"cross-env CI=true vitest related",
"prettier --write",
"eslint --max-warnings 0"
]
},
"devDependencies": {
"@types/eslint": "~8.56.11",
"@types/eslint-config-prettier": "~6.11.3",
"@types/js-yaml": "~4.0.9",
"@types/lint-staged": "~13.3.0",
"@types/node": "^20.14.9",
"@types/yargs": "^17.0.10",
"@vitest/coverage-v8": "^2.0.4",
"c8": "^10.1.2",
"cross-env": "^7.0.3",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-config-react-app": "^7.0.1",
"eslint-plugin-unicorn": "^54.0.0",
"husky": "^9.0.11",
"js-yaml": "^4.1.0",
"lint-staged": "^15.2.7",
"prettier": "^3.3.2",
"rimraf": "^5.0.7",
"tsx": "^4.15.7",
"typescript": "^5.5.2",
"vite": "^5.4.6",
"vitest": "^2.0.4",
"yargs": "^17.7.2"
}
}