-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
105 lines (105 loc) · 2.92 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
100
101
102
103
104
105
{
"name": "lzo-hyperc",
"version": "1.1.8",
"description": "Caching in Node.js to optimize app performance",
"main": "./build/index.js",
"types": "./build/index.d.ts",
"engines": {
"yarn": ">=1.22.19",
"npm": ">=8.19.2 <=9.0.0",
"node": ">=18.12.1 <=19.0.0"
},
"repository": "git://github.com/Lack-Zillions-Over/hyperc.git",
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"devDependencies": {
"@types/ioredis": "^5.0.0",
"@types/jest": "~29.2.6",
"@types/node": "~18.11.18",
"@types/uuid": "^9.0.0",
"@typescript-eslint/eslint-plugin": "~5.48.2",
"@typescript-eslint/parser": "~5.48.2",
"cz-conventional-changelog": "3.3.0",
"dotenv": "^16.0.3",
"dotenv-cli": "^7.0.0",
"eslint": "~8.32.0",
"eslint-config-prettier": "~8.6.0",
"eslint-plugin-jest": "~27.2.1",
"jest": "~29.3.1",
"lint-staged": "^13.1.0",
"npm-run-all": "^4.1.5",
"prettier": "~2.8.3",
"rimraf": "~4.1.1",
"standard-version": "^9.5.0",
"ts-jest": "^29.0.5",
"tsup": "^6.5.0",
"tsx": "^3.12.2",
"typescript": "~4.9.4"
},
"scripts": {
"commit": "cz",
"push:release": "git push --follow-tags origin main",
"post:release": "standard-version && yarn push:release",
"post:prerelease": "standard-version --prerelease alpha && yarn push:release",
"audit-fix": "npx yarn-audit-fix",
"update": "npx yarn upgrade-interactive --latest",
"clean": "rimraf coverage build tmp",
"prebuild": "npx yarn lint && npx yarn type-check",
"build": "tsup src/index.ts --config tsup.config.js",
"build:watch": "tsup src/index.ts --watch --config tsup.config.js",
"build:release": "npm run clean && tsup src/index.ts --config tsup.config.release.js",
"start": "tsx watch src/index.ts",
"type-check": "tsc --noEmit",
"type-check:watch": "npm run type-check -- --watch",
"format": "prettier --write .",
"lint": "eslint . --ext .ts",
"test": "dotenv -e .env.test jest --watchAll --detectOpenHandles",
"test:ci": "dotenv -e .env.test jest --ci --detectOpenHandles"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"src/**/*.ts": "tsc-files --noEmit",
"src/**/*": [
"yarn lint",
"yarn format"
]
},
"keywords": [
"lzo",
"hyperc",
"node",
"ts",
"typescript",
"cache"
],
"files": [
"build/*.js",
"build/**/*.js",
"build/*.d.ts",
"build/**/*.d.ts"
],
"author": "GuilhermeSantos001 <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/Lack-Zillions-Over/hyperc/issues"
},
"homepage": "https://github.com/Lack-Zillions-Over/hyperc#readme",
"dependencies": {
"ioredis": "^5.2.5",
"lzutf8": "^0.6.3"
},
"volta": {
"node": "18.12.1",
"yarn": "1.22.19"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}