-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
99 lines (99 loc) · 2.34 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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
{
"name": "@nrsk/serpent",
"version": "1.0.0",
"description": "Yet another TypeScript library starter with conventional goodies and automatic semantic releases.",
"sideEffects": false,
"type": "module",
"main": "./index.cjs",
"module": "./index.js",
"types": "./index.d.ts",
"exports": {
".": {
"types": "./index.d.ts",
"import": "./index.js",
"require": "./index.cjs"
}
},
"files": [
"CHANGELOG.md",
"*.d.ts",
"*.cjs*",
"*.js*"
],
"engines": {
"node": ">=20"
},
"scripts": {
"build": "tsup",
"fmt:lint": "eslint --fix --ext .js,.ts .",
"fmt:prettier": "prettier --write \"**/*.{js,ts,json}\"",
"postversion": "tsx ../.scripts/release.ts restore",
"prebuild": "rimraf dist",
"prepare": "husky",
"prerelease": "tsx .scripts/release.ts prepare",
"release": "npx semantic-release",
"release:dry": "npx semantic-release --dry-run",
"test": "vitest",
"test:coverage": "vitest --coverage"
},
"repository": {
"type": "git",
"url": "git+https://github.com/norskeld/serpent.git"
},
"keywords": [
"starter",
"library",
"typescript",
"jest",
"eslint",
"prettier",
"husky",
"lint-staged",
"commitlint",
"semantic-release"
],
"author": {
"name": "Vladislav Mamon",
"email": "[email protected]"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/norskeld/serpent/issues"
},
"homepage": "https://github.com/norskeld/serpent#readme",
"devDependencies": {
"@commitlint/cli": "^19.2.1",
"@nrsk/config-conventional": "^1.0.0",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@types/is-ci": "^3.0.4",
"@typescript-eslint/eslint-plugin": "^7.3.1",
"@typescript-eslint/parser": "^7.3.1",
"@vitest/coverage-istanbul": "^1.4.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"husky": "^9.0.11",
"is-ci": "^3.0.1",
"lint-staged": "^15.2.2",
"prettier": "^3.2.5",
"rimraf": "^5.0.5",
"semantic-release": "^23.0.5",
"tsup": "^8.0.2",
"tsx": "^4.7.1",
"typescript": "^5.4.2",
"vitest": "^1.4.0"
},
"commitlint": {
"extends": [
"@nrsk/config-conventional"
]
},
"lint-staged": {
"*.{js,ts,json}": [
"prettier --write"
],
"*.{js,ts}": [
"eslint"
]
}
}