-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
80 lines (80 loc) · 1.99 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
73
74
75
76
77
78
79
80
{
"name": "@imranbarbhuiya/package-template",
"version": "0.0.1",
"description": "Package description.",
"type": "module",
"main": "dist/index.js",
"browser": "dist/index.global.js",
"unpkg": "dist/index.global.js",
"types": "dist/index.d.ts",
"exports": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs"
},
"sideEffects": false,
"license": "MIT",
"author": "@imranbarbhuiya",
"scripts": {
"docs": "typedoc",
"lint": "eslint . --fix --cache",
"format": "biome check --write .",
"test": "vitest run",
"test:watch": "vitest",
"update": "yarn upgrade-interactive",
"build": "tsup",
"typecheck": "tsc -p tsconfig.base.json",
"bump": "cliff-jumper",
"check-update": "cliff-jumper --dry-run",
"prepack": "yarn build && pinst --disable",
"postinstall": "husky install .github/husky",
"postpack": "pinst --enable"
},
"keywords": ["some keywords"],
"publishConfig": {
"access": "public"
},
"devDependencies": {
"@biomejs/biome": "1.9.4",
"@commitlint/cli": "^19.6.1",
"@commitlint/config-conventional": "^19.6.0",
"@favware/cliff-jumper": "^5.0.0",
"@favware/npm-deprecate": "^2.0.0",
"@types/node": "^22.10.2",
"@vitest/coverage-v8": "^2.1.8",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^9.17.0",
"eslint-config-mahir": "^1.0.7",
"husky": "^9.1.7",
"lint-staged": "^15.3.0",
"pinst": "^3.0.0",
"tsup": "^8.3.5",
"typedoc": "^0.27.6",
"typescript": "^5.7.2",
"vitest": "^2.1.8"
},
"files": ["dist/**"],
"repository": {
"type": "git",
"url": "git+https://github.com/imranbarbhuiya/template.git"
},
"bugs": {
"url": "https://github.com/imranbarbhuiya/template/issues"
},
"homepage": "https://template.js.org/",
"commitlint": {
"extends": ["@commitlint/config-conventional"]
},
"lint-staged": {
"*.{mjs,js,ts}": "eslint --fix"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"resolutions": {
"ansi-regex": "^5.0.1",
"minimist": "^1.2.8"
},
"packageManager": "yarn@4.5.3"
}