-
Notifications
You must be signed in to change notification settings - Fork 21
/
Copy pathpackage.json
58 lines (58 loc) · 1.62 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
{
"name": "@empathyco/x-types",
"version": "10.1.0-alpha.6",
"description": "Empathy search types",
"author": "Empathy Systems Corporation S.L.",
"license": "Apache-2.0",
"homepage": "https://github.com/empathyco/x/tree/main/packages/x-types#readme",
"keywords": [
"search",
"types",
"models",
"interfaces"
],
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"types": "dist/x-types.d.ts",
"files": [
"dist",
"schemas",
"report"
],
"repository": {
"type": "git",
"url": "https://github.com/empathyco/x.git",
"directory": "packages/x-types"
},
"engines": {
"node": ">=18"
},
"scripts": {
"build": "rollup -c && npm run gen:docs",
"build:watch": "rollup -c -w",
"gen:model-docs": "api-extractor run -c x-types-extractor.json -l && api-extractor run -c schema-extractor.json -l && api-extractor run -l",
"gen:typescript-docs": "api-documenter markdown -i report -o docs",
"gen:docs": "npm run gen:model-docs && npm run gen:typescript-docs",
"postbuild": "npm pack",
"prepublishOnly": "npm run build"
},
"dependencies": {
"@empathyco/x-adapter": "^8.1.0-alpha.0",
"@empathyco/x-utils": "^1.0.3-alpha.1",
"tslib": "~2.6.0"
},
"devDependencies": {
"@empathyco/x-jest-utils": "^1.4.0-alpha.11",
"@microsoft/api-documenter": "~7.23.0",
"@microsoft/api-extractor": "~7.39.0",
"@types/jest": "~27.5.0",
"jest": "~27.5.0",
"rollup": "~4.9.1",
"rollup-plugin-delete": "~2.0.0",
"rollup-plugin-typescript2": "~0.36.0",
"typescript": "~4.9.4"
},
"publishConfig": {
"access": "public"
}
}