-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.42 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
{
"author": "Name Surname",
"dependencies": {},
"devDependencies": {
"@commitlint/cli": "^18.6.1",
"@commitlint/config-conventional": "^18.6.2",
"bunchee": "^5.3.2",
"lefthook": "^1.7.12",
"npm-check-updates": "^16.14.20",
"typescript": "^5.5.4",
"typescript-coverage-report": "^1.0.0"
},
"exports": {
".": {
"import": {
"default": "./dist/index.js",
"types": "./dist/index.d.ts"
}
}
},
"files": [
"dist"
],
"license": "MIT",
"main": "./dist/index.js",
"module": "./dist/index.js",
"name": "package-starter",
"packageManager": "[email protected]",
"private": false,
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "bunchee -m",
"clear": "rm -rf .next .turbo node_modules",
"clear:soft": "rm -rf .next .turbo",
"commitlint:init": "chmod +x .lefthook/commit-msg/commitlint.sh",
"lefthook:init": "bunx lefthook install",
"lint": "bunx @biomejs/biome lint ./src",
"lint:check": "bunx @biomejs/biome check ./src",
"lint:fix": "bunx @biomejs/biome lint --write ./src",
"lint:format": "bunx @biomejs/biome format ./src",
"preinstall": "npx only-allow bun",
"setup": "bunx lefthook install && chmod +x .lefthook/commit-msg/commitlint.sh && bun install",
"type:check": "tsc --noEmit",
"type:coverage": "typescript-coverage-report",
"update:check": "bun x npm-check-updates"
},
"sideEffects": false,
"type": "module",
"types": "./dist/index.d.ts",
"version": "0.0.1"
}