-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
85 lines (85 loc) · 2.13 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
81
82
83
84
85
{
"name": "@mheob/changeset-changelog",
"version": "3.0.1",
"description": "My personal changeset changelog configuration.",
"keywords": [
"changelog",
"changeset",
"config"
],
"homepage": "https://github.com/mheob/changeset-changelog",
"bugs": "https://github.com/mheob/changeset-changelog/issues",
"repository": {
"type": "git",
"url": "https://github.com/mheob/changeset-changelog"
},
"license": "MIT",
"author": "Alexander Böhm <tools@boehm.work>",
"exports": {
".": {
"import": "./dist/index.mjs",
"require": "./dist/index.js"
},
"./package.json": "./package.json"
},
"main": "dist/index.js",
"module": "dist/index.mjs",
"files": [
"dist"
],
"scripts": {
"build": "tsup",
"changeset": "changeset",
"dev": "tsup --watch",
"format": "prettier --write \"**/*.{cjs,js,mjs,ts,json,md,mdx,yaml,yml}\"",
"lint": "eslint . --ext .cjs,.js,.mjs,.ts --fix --ignore-path .gitignore",
"prepare": "ts-node ./scripts/prepare.ts",
"release": "changeset publish",
"test": "vitest",
"test:cov": "vitest run --coverage",
"test:run": "vitest run",
"test:ui": "vitest --ui",
"version-packages": "changeset version && pnpm run format"
},
"lint-staged": {
"!(pnpm-)*.{cjs,js,mjs,ts,json,md,mdx,yaml,yml}": "pnpm exec prettier --write",
"*.{cjs,js,mjs,ts}": "eslint --fix",
"package.json": "pnpm dlx sort-package-json"
},
"dependencies": {
"@changesets/get-github-info": "^0.6.0",
"@changesets/types": "^6.0.0",
"dotenv": "^16.4.1"
},
"devDependencies": {
"@changesets/cli": "^2.27.1",
"@changesets/parse": "^0.4.0",
"@commitlint/cli": "^19.0.0",
"@mheob/commitlint-config": "^1.1.1",
"@mheob/eslint-config": "^5.2.0",
"@mheob/prettier-config": "^3.2.0",
"@mheob/tsconfig": "^2.0.0",
"@types/node": "^20.11.16",
"@vitest/coverage-istanbul": "^1.2.2",
"commitizen": "^4.3.0",
"cz-git": "^1.8.0",
"eslint": "^8.56.0",
"husky": "^8.0.3",
"lint-staged": "^15.2.2",
"ts-node": "^10.9.2",
"tsup": "^8.0.1",
"typescript": "^5.3.3",
"vite": "^5.0.12",
"vitest": "^1.2.2"
},
"tsup": {
"clean": true,
"entry": [
"src/index.ts"
],
"format": [
"esm",
"cjs"
]
}
}