-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
77 lines (77 loc) · 2.03 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
{
"name": "ts-starter",
"version": "0.0.0",
"description": "",
"keywords": [],
"repository": {
"type": "git",
"url": "https://github.com/jimmy-guzman/ts-starter.git"
},
"license": "MIT",
"sideEffects": false,
"type": "module",
"exports": {
"require": {
"types": "./dist/index.d.cts",
"default": "./dist/index.cjs"
},
"import": {
"types": "./dist/index.d.mts",
"default": "./dist/index.mjs"
}
},
"main": "./dist/index.cjs",
"module": "./dist/index.mjs",
"types": "./dist/index.d.cts",
"files": [
"dist"
],
"scripts": {
"build": "pkgroll --minify",
"dev": "pkgroll --watch",
"format": "prettier --check --cache .",
"format:fix": "prettier --write --cache .",
"lint": "eslint --flag unstable_ts_config --cache --cache-location node_modules/.cache/eslint --color .",
"lint:fix": "pnpm lint --fix",
"test": "vitest",
"coverage": "vitest run --coverage",
"typecheck": "tsc",
"prepack": "pnpm build && clean-pkg-json",
"prepare": "is-ci || lefthook install"
},
"prettier": "@jimmy.codes/prettier-config",
"devDependencies": {
"@commitlint/config-conventional": "19.6.0",
"@jimmy.codes/eslint-config": "3.29.0",
"@jimmy.codes/prettier-config": "1.3.0",
"@semantic-release/changelog": "6.0.3",
"@semantic-release/commit-analyzer": "13.0.0",
"@semantic-release/git": "10.0.1",
"@semantic-release/npm": "12.0.1",
"@semantic-release/release-notes-generator": "14.0.2",
"@types/node": "22.10.3",
"@vitest/coverage-v8": "2.1.8",
"clean-pkg-json": "1.2.0",
"commitlint": "19.6.1",
"eslint": "9.17.0",
"gitzy": "5.7.1",
"is-ci": "4.1.0",
"jiti": "2.4.2",
"lefthook": "1.10.1",
"pkgroll": "2.6.0",
"prettier": "3.4.2",
"semantic-release": "24.2.0",
"typescript": "5.7.2",
"vitest": "2.1.8"
},
"packageManager": "pnpm@9.15.2",
"engines": {
"node": ">= 20"
},
"publishConfig": {
"access": "public"
},
"gitzy": {
"useCommitlintConfig": true
}
}