-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 1.73 KB
/
package.json
File metadata and controls
72 lines (72 loc) · 1.73 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
{
"name": "@allenthich/react-library-template",
"version": "0.0.1",
"description": "React template component/library",
"type": "module",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": ["dist"],
"exports": {
".": {
"import": "./dist/index.js"
}
},
"scripts": {
"dev": "vite",
"test": "vitest",
"build": "vite build",
"lint": "pnpm biome lint --error-on-warnings",
"lint:fix": "pnpm biome lint --write .",
"format": "pnpm biome format",
"format:fix": "pnpm biome format . --write",
"commit": "cz",
"prepack": "pnpm run build",
"semantic-release": "semantic-release"
},
"peerDependencies": {
"react": ">=18.2.0",
"react-dom": ">=18.2.0"
},
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"@commitlint/cli": "^19.8.0",
"@commitlint/config-conventional": "^19.8.0",
"@testing-library/react": "16.1.0",
"@types/node": "^18.19.86",
"@types/react": "19.0.0",
"@types/react-dom": "19.0.0",
"@vitejs/plugin-react-swc": "^3.8.1",
"@vitest/coverage-v8": "^3.1.1",
"@vitest/ui": "^3.1.1",
"commitizen": "^4.3.1",
"cz-conventional-changelog": "^3.3.0",
"jsdom": "^26.0.0",
"lefthook": "^1.11.6",
"semantic-release": "^24.2.3",
"tslib": "^2.8.1",
"typescript": "^5.8.2",
"vite": "^6.2.5",
"vite-plugin-dts": "~4.5.3",
"vitest": "^3.1.1"
},
"repository": {
"type": "git",
"url": "https://github.com/allenthich/react-library-template.git"
},
"keywords": ["react", "typescript"],
"release": {
"branches": ["main"]
},
"publishConfig": {
"access": "restricted",
"registry": "https://npm.pkg.github.com"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"commitlint": {
"extends": ["@commitlint/config-conventional"]
}
}