-
Notifications
You must be signed in to change notification settings - Fork 21
/
package.json
55 lines (55 loc) · 1.27 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
{
"name": "@empathyco/x-storage-service",
"version": "2.0.3-alpha.0",
"description": "Storage service with TTL",
"author": "Empathy Systems Corporation S.L.",
"license": "Apache-2.0",
"homepage": "https://github.com/empathyco/x/tree/main/packages/storage-service#readme",
"keywords": [
"storage",
"cache",
"service",
"ttl",
"local",
"session"
],
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"types": "types/index.d.ts",
"files": [
"dist",
"types"
],
"repository": {
"type": "git",
"url": "https://github.com/empathyco/x.git",
"directory": "packages/storage-service"
},
"engines": {
"node": ">=18"
},
"scripts": {
"build": "tsc && tsc --project tsconfig.esm.json",
"build:watch": "tsc --watch",
"postbuild": "pnpm pack",
"lint": "eslint . --ext .ts",
"test": "jest",
"test:unit": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"prepublishOnly": "pnpm run build"
},
"dependencies": {
"@empathyco/x-logger": "^1.2.0-alpha.11",
"tslib": "~2.6.0"
},
"devDependencies": {
"@types/jest": "~27.5.0",
"jest": "~27.5.0",
"ts-jest": "~27.1.0",
"typescript": "~4.9.4"
},
"publishConfig": {
"access": "public"
}
}