-
Notifications
You must be signed in to change notification settings - Fork 21
/
package.json
55 lines (55 loc) · 1.38 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-adapter",
"version": "8.1.0-alpha.0",
"description": "A utils library to create a client for any API",
"author": "Empathy Systems Corporation S.L.",
"license": "Apache-2.0",
"homepage": "https://github.com/empathyco/x/tree/main/packages/x-adapter#readme",
"keywords": [
"search",
"adapter",
"client",
"fetch"
],
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"types": "dist/types/index.d.ts",
"files": [
"dist"
],
"repository": {
"type": "git",
"url": "git+https://github.com/empathyco/x.git",
"directory": "packages/x-adapter"
},
"engines": {
"node": ">=18"
},
"scripts": {
"prebuild": "rimraf ./dist ./*.tgz",
"build": "concurrently \"pnpm run build:*\"",
"build:cjs": "tsc --project tsconfig.cjs.json",
"build:esm": "tsc --project tsconfig.esm.json",
"postbuild": "pnpm pack",
"lint": "eslint . --ext .ts",
"test": "jest",
"test:unit": "jest",
"prepublishOnly": "pnpm run build"
},
"dependencies": {
"@empathyco/x-deep-merge": "^2.0.3-alpha.1",
"@empathyco/x-utils": "^1.0.3-alpha.1",
"tslib": "~2.6.0"
},
"devDependencies": {
"@types/jest": "~27.5.0",
"concurrently": "~8.2.0",
"jest": "~27.5.0",
"rimraf": "~3.0.2",
"ts-jest": "~27.1.0",
"typescript": "~4.9.4"
},
"publishConfig": {
"access": "public"
}
}