-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
102 lines (102 loc) · 2.91 KB
/
package.json
File metadata and controls
102 lines (102 loc) · 2.91 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
91
92
93
94
95
96
97
98
99
100
101
102
{
"name": "hybrid-webcache",
"version": "0.3.3",
"description": "Hybrid WebCache - A library that combines `localStorage`, `IndexedDB`, `SessionStorage` and `Memory` to provide a high-performance hybrid cache with multi-instance synchronization support.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"type": "commonjs",
"author": "Heliomar P. Marques",
"license": "MIT",
"homepage": "https://github.com/heliomarpm/hybrid-webcache#readme",
"bugs": {
"url": "https://github.com/heliomarpm/hybrid-webcache/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/heliomarpm/hybrid-webcache.git"
},
"files": [
"dist/**/*"
],
"keywords": [
"hybrid",
"cache",
"webcache",
"webdb",
"webstorage",
"key-value",
"data",
"database",
"storage",
"localstorage",
"indexeddb",
"node",
"node-cache",
"crud"
],
"scripts": {
"check": "biome check ./src",
"lint": "biome lint ./src --write --unsafe",
"format": "biome format --write .",
"test": "vitest --no-watch --reporter=verbose",
"test:c": "vitest --no-watch --coverage",
"prepare": "husky && echo 'Hooks configurados!'",
"commit": "git-cz",
"prebuild": "rimraf dist",
"build:dev": "tsc -p tsconfig.json",
"build": "tsc -p tsconfig.prod.json",
"predocs": "typedoc",
"docs": "vitepress build .docs",
"docs:dev": "npm run predocs && vitepress dev .docs",
"clean": "rimraf -rf node_modules coverage dist .docs/.vitepress/cache .docs/.vitepress/dist .docs/app",
"postclean": "npm cache clean --force"
},
"dependencies": {
"lodash": "^4.17.21"
},
"devDependencies": {
"@biomejs/biome": "^2.2.5",
"@commitlint/cli": "^20.1.0",
"@commitlint/config-conventional": "^20.0.0",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/commit-analyzer": "^13.0.1",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^11.0.6",
"@semantic-release/npm": "^12.0.2",
"@types/lodash": "^4.17.20",
"@types/node": "^24.6.2",
"@vitest/coverage-v8": "^3.2.4",
"commitizen": "^4.3.1",
"cz-conventional-changelog": "^3.3.0",
"fake-indexeddb": "^6.2.2",
"husky": "^9.1.7",
"jsdom": "^27.0.0",
"lint-staged": "^16.2.3",
"rimraf": "^6.0.1",
"semantic-release": "^24.2.9",
"typedoc": "^0.28.13",
"typedoc-vitepress-theme": "^1.1.2",
"typescript": "^5.9.3",
"vitepress": "^1.6.4",
"vitest": "^3.2.4"
},
"lint-staged": {
"./src/*.{ts,js,mts,json,jsonc,yml}": [
"biome check --write --files-ignore-unknown=true --no-errors-on-unmatched ./src"
]
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
],
"rules": {
"header-max-length": [1, "always", 100],
"body-max-line-length": [1, "always", 100]
}
}
}