-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
78 lines (78 loc) · 1.82 KB
/
package.json
File metadata and controls
78 lines (78 loc) · 1.82 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
{
"name": "@codeowners-flow/cli",
"version": "0.0.1",
"description": "A tool to script and manage the CODEOWNERS file programmatically",
"bin": {
"codeowners-flow": "./bin/index.js"
},
"keywords": [
"codeowners",
"github",
"git",
"azure",
"bitbucket"
],
"author": "Raul Melo <contact@raulmelo.me>",
"license": "MIT",
"type": "module",
"files": [
"dist",
"bin",
"README.md",
"index.d.ts",
"config.d.ts",
"CHANGELOG.md",
"LICENSE"
],
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./index.d.ts",
"exports": {
".": {
"import": "./dist/index.js",
"require": "./dist/index.cjs",
"types": "./index.d.ts"
},
"./config": {
"import": "./dist/config.js",
"require": "./dist/config.cjs",
"types": "./config.d.ts"
}
},
"scripts": {
"prepare": "pnpm turbo build --filter codeowners-flow --output-logs errors-only",
"build": "vite build",
"dev": "tsx src/index.ts",
"lint": "eslint src",
"test": "vitest",
"typecheck": "tsc --noEmit",
"test-f": "tsx test.ts"
},
"dependencies": {
"@manypkg/find-root": "2.2.1",
"cosmiconfig": "8.2.0",
"jscodeshift": "0.15.0",
"prettier": "3.0.1",
"zod": "3.21.4",
"zod-validation-error": "1.3.1"
},
"devDependencies": {
"@codeowners-flow/eslint": "workspace:*",
"@codeowners-flow/tsconfig": "workspace:*",
"@types/babel__generator": "7.6.4",
"@types/jscodeshift": "0.11.6",
"@types/node": "16",
"@vitest/coverage-v8": "0.34.1",
"eslint": "8.47.0",
"meow": "12.0.1",
"tsx": "3.12.7",
"typescript": "5.1.6",
"vite": "4.4.8",
"vite-plugin-dts": "3.5.1",
"vitest": "0.34.1"
},
"lint-staged": {
"*.{md,json}": "prettier --write",
"*.{js,ts,tsx}": "eslint --fix"
}
}