-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
90 lines (90 loc) · 2.24 KB
/
package.json
File metadata and controls
90 lines (90 loc) · 2.24 KB
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
{
"name": "mochila-ts",
"version": "1.11.2",
"description": "A set of utilities with (as much as we can) TypeScript support",
"author": "José Manuel Lucas",
"license": "MIT",
"files": [
"dist",
"package.json"
],
"exports": {
".": {
"types": "./dist/index.d.ts",
"require": "./dist/index.js",
"import": "./dist/index.mjs"
}
},
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"sideEffects": false,
"engines": {
"node": ">=20.0.0",
"pnpm": ">=9.0.0"
},
"scripts": {
"build": "tsup",
"dev": "tsup --watch",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"type-check": "type-coverage --detail",
"size": "size-limit",
"lint": "eslint \"src/**/*.{ts,tsx}\"",
"doc": "typedoc --out docs",
"prepare": "husky"
},
"typeCoverage": {
"atLeast": 95,
"detail": false,
"ignoreFiles": [
"src/**/*.test.ts",
"dist/**",
"coverage/**",
"docs/**"
]
},
"prettier": "@jmlweb/prettier-config-base",
"lint-staged": {
"*.{ts,tsx}": [
"eslint --fix",
"prettier --write"
]
},
"devDependencies": {
"@eslint/js": "^9.39.1",
"@jmlweb/commitlint-config": "^3.0.1",
"@jmlweb/eslint-config-base": "^2.0.10",
"@jmlweb/prettier-config-base": "^1.0.6",
"@jmlweb/tsconfig-base": "^1.0.5",
"@mxssfd/typedoc-theme": "^1.1.3",
"@semantic-release/git": "^10.0.1",
"@size-limit/esbuild": "^11.2.0",
"@size-limit/file": "^11.2.0",
"@types/jest": "^29.5.13",
"@types/node": "^22.0.0",
"commitlint": "^20.1.0",
"eslint": "^9.39.1",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-simple-import-sort": "^12.1.1",
"eslint-plugin-tsdoc": "^0.4.0",
"globals": "^16.5.0",
"husky": "^9.1.7",
"jest": "^29.7.0",
"lint-staged": "^16.2.6",
"prettier": "^3.6.2",
"semantic-release": "^24.0.0",
"size-limit": "^11.2.0",
"ts-jest": "^29.2.0",
"tsup": "^8.3.0",
"type-coverage": "^2.29.7",
"typedoc": "^0.27.0",
"typescript": "^5.6.3",
"typescript-eslint": "^8.46.3"
},
"repository": {
"type": "git",
"url": "https://github.com/jmlweb/mochila.git"
}
}