generated from jcamp-code/starter-typescript
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
68 lines (68 loc) · 1.89 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
{
"name": "commitlint-config-unjs",
"type": "module",
"version": "1.0.1",
"packageManager": "pnpm@8.3.1",
"description": "A commitlint config for unjs's changelogen tool",
"author": "John Campion",
"license": "MIT",
"homepage": "https://github.com/jcamp-code/commitlint-config-unjs",
"repository": {
"type": "git",
"url": "git+https://github.com/jcamp-code/commitlint-config-unjs.git"
},
"bugs": {
"url": "https://github.com/jcamp-code/commitlint-config-unjs/issues"
},
"keywords": [
"commitlint",
"changelogen",
"unjs"
],
"exports": {
".": {
"types": "./dist/index.d.ts",
"require": "./dist/index.cjs",
"import": "./dist/index.mjs"
}
},
"main": "./dist/index.cjs",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"dev:tsc": "tsc -w",
"build:tsc": "tsc",
"dev": "unbuild --stub",
"build": "unbuild",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"format": "prettier --check --write .",
"prepare": "npx simple-git-hooks",
"test": "vitest run",
"release": "changelogen --release --push && pnpm publish",
"release:minor": "changelogen --release --minor --push && pnpm publish",
"release:major": "changelogen --release --major --push && pnpm publish",
"release:patch": "changelogen --release --patch --push && pnpm publish"
},
"dependencies": {
"@commitlint/types": "^17.4.4",
"conventional-changelog-conventionalcommits": "^5.0.0"
},
"devDependencies": {
"@commitlint/cli": "^17.5.1",
"@commitlint/config-conventional": "^17.4.4",
"@jcamp/eslint-config": "0.6.1",
"changelogen": "^0.5.2",
"eslint": "8.39.0",
"lint-staged": "^13.2.0",
"prettier": "2.8.8",
"simple-git-hooks": "^2.8.1",
"typescript": "^5.0.3",
"unbuild": "^1.2.0",
"vite": "^4.2.1",
"vitest": "^0.29.8"
}
}