-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.11 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
{
"name": "@sayanbiswas/typedcache",
"version": "0.0.2",
"description": "Typesafe cache for Node.js",
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"keywords": [
"cache",
"typedcache",
"typescript",
"nodejs",
"memorycache"
],
"scripts": {
"build": "tsup",
"test": "vitest",
"coverage": "vitest run --coverage",
"lint": "eslint .",
"format": "prettier --write ."
},
"author": "Sayan Biswas <[email protected]>",
"repository": {
"type": "git",
"url": "git+https://github.com/Dank-del/typedcache.git"
},
"license": "MIT",
"files": [
"dist",
"src",
"README.md",
"LICENSE"
],
"devDependencies": {
"@types/node": "^18.17.11",
"@typescript-eslint/eslint-plugin": "^6.4.1",
"@typescript-eslint/parser": "^6.4.1",
"@vitest/coverage-v8": "^0.34.2",
"eslint": "^8.47.0",
"eslint-config-chance": "^2.0.2",
"eslint-import-resolver-node": "^0.3.9",
"eslint-import-resolver-typescript": "^3.6.0",
"eslint-plugin-import": "^2.28.1",
"prettier": "^3.0.2",
"tsup": "^7.2.0",
"typescript": "^5.2.2",
"vite": "^4.4.9",
"vitest": "^0.34.2"
}
}