-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
53 lines (53 loc) · 1.36 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
{
"name": "code-style-monorepo",
"version": "2.0.0-32",
"private": true,
"description": "My code style configs",
"keywords": [
"style",
"lint",
"config",
"format"
],
"homepage": "https://github.com/dudeofawesome/code-style#readme",
"bugs": {
"url": "https://github.com/dudeofawesome/code-style/issues"
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/dudeofawesome/code-style.git"
},
"license": "MIT",
"author": "Louis Orleans <louis@orleans.io>",
"type": "module",
"bin": {
"bump": "scripts/bump.ts",
"concurrently-ws": "scripts/concurrently-ws.ts",
"upgrade-packages": "scripts/upgrade-packages.sh"
},
"workspaces": [
"packages/*",
"utils"
],
"scripts": {
"build": "scripts/build.sh",
"bump": "scripts/bump.ts",
"prelint": "npm run build",
"lint": "scripts/concurrently-ws.ts lint 'npm:lint:*' && echo 'All lint passed.'",
"lint:js": "eslint . --ext ts,js,json",
"lint:types": "tsc --noEmit --pretty",
"pretest": "npm run build",
"test": "scripts/concurrently-ws.ts test && echo 'All tests passed.'",
"upgrade-packages": "scripts/upgrade-packages.sh"
},
"devDependencies": {
"@types/eslint": "^8.44.2",
"@types/node": "^20.8.4",
"glob": "^10.3.12",
"tsx": "^4.9.4",
"yargs": "^17.7.2"
},
"engines": {
"node": ">=20"
}
}