-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
63 lines (63 loc) · 1.71 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
{
"name": "@jcamp/starter-typescript",
"type": "module",
"version": "0.2.1",
"private": true,
"packageManager": "pnpm@8.6.6",
"description": "Starter repo for Typescript projects and NPM packages",
"author": "John Campion",
"license": "MIT",
"homepage": "https://github.com/jcamp-code/starter-typescript",
"repository": {
"type": "git",
"url": "git+https://github.com/jcamp-code/starter-typescript.git"
},
"bugs": {
"url": "https://github.com/jcamp-code/starter-typescript/issues"
},
"keywords": [
"npm",
"package",
"starter",
"vitest"
],
"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",
"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"
},
"devDependencies": {
"@commitlint/cli": "^17.6.6",
"@jcamp/eslint-config": "0.7.1",
"changelogen": "^0.5.4",
"commitlint-config-unjs": "^1.0.1",
"eslint": "^8.44.0",
"lint-staged": "^13.2.3",
"prettier": "2.8.8",
"simple-git-hooks": "^2.8.1",
"typescript": "^5.1.6",
"vite": "^4.3.9",
"vitest": "^0.32.4"
}
}