generated from ericvera/ts-lib-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
64 lines (64 loc) · 1.44 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
{
"name": "betterbe",
"version": "0.8.1",
"type": "module",
"exports": {
".": "./dist/index.js"
},
"files": [
"dist",
"!/**/__test__",
"!*.test.*"
],
"sideEffects": false,
"engines": {
"node": ">=20"
},
"scripts": {
"build": "tsc --build",
"lint": "eslint .",
"test": "vitest run",
"test:watch": "vitest",
"smoke": "yarn build && yarn lint && yarn test",
"docs": "typedoc && prettier --ignore-unknown --write docs/",
"-- PRE-COMMIT HOOKS --": "",
"localAfterInstall": "husky || true",
"prepublishOnly": "pinst --disable",
"postpublish": "pinst --enable"
},
"devDependencies": {
"@eslint/js": "^9.15.0",
"@tsconfig/strictest": "^2.0.5",
"@types/node": "^22.9.3",
"eslint": "^9.15.0",
"husky": "^9.1.7",
"is-ci": "^3.0.1",
"lint-staged": "^15.2.10",
"pinst": "^3.0.0",
"prettier": "^3.3.3",
"typedoc": "^0.26.11",
"typedoc-plugin-markdown": "^4.2.10",
"typescript": "^5.7.2",
"typescript-eslint": "^8.15.0",
"vitest": "^2.1.5"
},
"prettier": {
"tabWidth": 2,
"semi": false,
"singleQuote": true
},
"repository": {
"type": "git",
"url": "git+https://github.com/ericvera/betterbe.git"
},
"keywords": [
"input",
"validation"
],
"license": "MIT",
"lint-staged": {
"*.{ts,tsx,mjs}": "eslint --cache",
"*": "prettier --ignore-unknown --write"
},
"packageManager": "[email protected]"
}