-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
72 lines (72 loc) · 1.96 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
{
"description": "A collection of TurboRepo CLI tools to test, lint, build, version and publish packages in your Turborepo monorepo",
"name": "@better-builds/turbo-tools",
"version": "7.3.0",
"exports": "./dist/index.js",
"bin": "./dist/cli.js",
"type": "module",
"types": "./dist/index.d.ts",
"typings": "./dist/index.d.ts",
"packageManager": "[email protected]",
"files": [
"./dist"
],
"license": "MPL-2.0",
"keywords": [
"turbo",
"tools",
"monorepo",
"publishing",
"versioning",
"easy-to-use",
"magic"
],
"repository": {
"type": "git",
"url": "git+https://github.com/benduran/turbo-tools.git"
},
"scripts": {
"build": "run-s clean compile",
"clean": "rm -rf ./dist",
"compile": "tsc --project ./tsconfig.json",
"lint": "eslint --no-error-on-unmatched-pattern './src/**/*.{tsx,ts,jsx,js,mjs}'",
"lint:fix": "npm run lint -- --fix",
"start": "node src/cli.js",
"test": "vitest run",
"test:coverage": "vitest run --coverage",
"test:watch": "vitest",
"typecheck": "tsc --project ./tsconfig.json",
"typecheck:staged": "tsc --noEmit --allowJs --skipLibCheck"
},
"devDependencies": {
"@types/fs-extra": "^11.0.4",
"@types/yargs": "^17.0.32",
"eslint-config-react-yas": "^5.0.4",
"lint-staged": "^15.2.7",
"npm-run-all": "^4.1.5",
"type-fest": "^4.30.0",
"vitest": "^1.6.0"
},
"dependencies": {
"@better-builds/lets-version": "^1.3.0",
"@commitlint/cli": "^19.6.0",
"@commitlint/config-conventional": "^19.6.0",
"@npmcli/map-workspaces": "^3.0.6",
"app-root-path": "^3.1.0",
"comment-json": "^4.2.3",
"deepmerge": "^4.3.1",
"detect-package-manager": "^2.0.1",
"fast-glob": "^3.3.2",
"fs-extra": "^11.2.0",
"husky": "^9.0.11",
"turbo": "2.3.3",
"typescript": "^5.7.2",
"yargs": "^17.7.2"
},
"lint-staged": {
"*.{js,jsx,ts,tsx,mjs,mts}": [
"eslint",
"npm run typecheck:staged --"
]
}
}