-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.99 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 1.99 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
{
"name": "good-typescript-libraries-template",
"version": "0.1.0",
"description": "Monorepo template for TypeScript libraries powered by Nx, pnpm, and GitHub Actions",
"private": true,
"scripts": {
"prepare": "husky",
"format": "biome format --write .",
"format:check": "biome format .",
"lint": "nx run-many -t lint --all",
"lint:fix": "nx run-many -t lint --all -- --write",
"test": "nx run-many -t test --all",
"test:coverage": "nx run-many -t test --all -- --coverage",
"typecheck": "nx run-many -t typecheck --all",
"build": "nx run-many -t build --all",
"build:check": "nx run-many -t build --all && nx run-many -t attw --all",
"attw": "nx run-many -t attw --all",
"release": "nx release --yes",
"release:version": "nx release version --yes",
"release:publish": "nx release publish --yes",
"release:dry": "nx release --yes --dry-run",
"release:first": "nx release --yes --first-release"
},
"lint-staged": {
"packages/**/*.{js,ts,json}": "biome check --write --no-errors-on-unmatched",
"*.{js,ts,json}": "biome check --write --no-errors-on-unmatched"
},
"keywords": [
"typescript",
"library",
"template",
"nx",
"monorepo"
],
"author": {
"email": "[email protected]",
"name": "neg4n",
"url": "https://github.com/neg4n"
},
"license": "MIT",
"packageManager": "[email protected]",
"devDependencies": {
"@arethetypeswrong/cli": "^0.18.2",
"@biomejs/biome": "2.3.8",
"@nx/js": "22.2.1",
"@nx/workspace": "22.2.1",
"@rollup/plugin-commonjs": "^28.0.6",
"@rollup/plugin-node-resolve": "^16.0.1",
"@rollup/plugin-terser": "^0.4.4",
"@rollup/plugin-typescript": "^12.1.3",
"@swc-node/register": "^1.11.1",
"@swc/core": "^1.15.3",
"@vitest/coverage-v8": "3.2.4",
"husky": "9.1.7",
"lint-staged": "16.1.2",
"nx": "22.2.1",
"rollup": "^4.44.0",
"rollup-plugin-dts": "^6.2.1",
"tslib": "^2.8.1",
"typescript": "5.9.3",
"vitest": "3.2.4"
}
}