-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
115 lines (115 loc) · 3.19 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
106
107
108
109
110
111
112
113
114
115
{
"name": "@teleporthq/cms-mappers",
"version": "1.0.19",
"main": "dist/index.js",
"module": "dist/contentful.mjs",
"types": "dist/contentful/index.d.ts",
"author": "teleportHQ",
"license": "MIT",
"exports": {
"./contentful": {
"import": "./dist/contentful.mjs",
"require": "./dist/contentful.js",
"types": "./dist/contentful/index.d.ts"
},
"./contentful/revalidate": {
"import": "./dist/contentful-revalidator.mjs",
"require": "./dist/contentful-revalidator.js",
"types": "./dist/contentful/revalidate.d.ts"
},
"./strapi": {
"import": "./dist/strapi.mjs",
"require": "./dist/strapi.js",
"types": "./dist/strapi/index.d.ts"
},
"./strapi/revalidate": {
"import": "./dist/strapi-revalidator.mjs",
"require": "./dist/strapi-revalidator.js",
"types": "./dist/strapi/revalidate.d.ts"
},
"./wordpress": {
"import": "./dist/wordpress.mjs",
"require": "./dist/wordpress.js",
"types": "./dist/wordpress/index.d.ts"
},
"./wordpress/revalidate": {
"import": "./dist/wordpress-revalidator.mjs",
"require": "./dist/wordpress-revalidator.js",
"types": "./dist/wordpress/revalidate.d.ts"
},
"./caisy": {
"import": "./dist/caisy.mjs",
"require": "./dist/caisy.js",
"types": "./dist/caisy/index.d.ts"
},
"./caisy/revalidate": {
"import": "./dist/caisy-revalidator.mjs",
"require": "./dist/caisy-revalidator.js",
"types": "./dist/caisy/revalidate.d.ts"
},
"./flotiq": {
"import": "./dist/flotiq.mjs",
"require": "./dist/flotiq.js",
"types": "./dist/flotiq/index.d.ts"
},
"./flotiq/revalidate": {
"import": "./dist/flotiq-revalidator.mjs",
"require": "./dist/flotiq-revalidator.js",
"types": "./dist/flotiq/revalidate.d.ts"
},
".": {
"import": "./dist/contentful.mjs",
"require": "./dist/contentful.js",
"types": "./dist/contentful/index.d.ts"
},
"./package.json": "./package.json"
},
"scripts": {
"lint": "eslint",
"build": "vite build",
"test": "vitest run",
"test:watch": "vitest watch",
"dev": "vite build --watch"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org"
},
"files": [
"dist",
"src",
"package.json",
"README.md"
],
"repository": {
"type": "git",
"url": "git+ssh://[email protected]:teleporthq/teleport-cms-mappers.git"
},
"devDependencies": {
"@types/contentful-resolve-response": "^0.1.31",
"@types/he": "^1.2.0",
"@types/node": "18",
"@typescript-eslint/eslint-plugin": "^5.59.2",
"@typescript-eslint/parser": "^5.59.2",
"eslint": "^8.39.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-prettier": "^4.2.1",
"husky": "^8.0.3",
"prettier": "^2.8.8",
"pretty-quick": "^3.1.3",
"typescript": "^5.0.4",
"vite": "^4.4.4",
"vite-plugin-dts": "^2.3.0",
"vite-plugin-eslint": "^1.8.1"
},
"dependencies": {
"contentful-resolve-response": "^1.7.0",
"he": "^1.2.0"
}
}