-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.68 KB
/
Copy pathpackage.json
File metadata and controls
63 lines (63 loc) · 1.68 KB
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
{
"name": "contentfully",
"version": "4.0.2",
"description": "A simple but performant REST client for Contentful.",
"keywords": [
"contentful",
"javascript",
"react-native"
],
"author": "Simeon de Dios <simeon@nascentdigital.com>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/nascentdigital/contentfully.git"
},
"bugs": {
"url": "https://github.com/nascentdigital/contentfully/issues"
},
"type": "module",
"homepage": "https://github.com/nascentdigital/contentfully#readme",
"main": "./dist/index.cjs",
"module": "./dist/index.mjs",
"types": "./dist/index.d.mts",
"scripts": {
"prepare": "npm run build",
"build": "tsdown",
"test": "jest",
"dev": "tsc -w"
},
"exports": {
".": {
"types": "./dist/index.d.mts",
"import": "./dist/index.mjs",
"require": "./dist/index.cjs",
"default": "./dist/index.mjs"
}
},
"files": [
"dist"
],
"dependencies": {
"@types/json-patch": "^0.0.33",
"contentful": "^11.10.5",
"contentful-management": "^11.74.0",
"lodash": "^4.17.23"
},
"devDependencies": {
"@contentful/rich-text-types": "^17.2.5",
"@jest/test-sequencer": "^30.2.0",
"@types/jest": "^30.0.0",
"@types/lodash": "^4.17.24",
"jest": "^30.2.0",
"ts-jest": "^29.4.6",
"tsdown": "^0.21.0",
"type-fest": "^5.4.4",
"typescript": "^5.9.3"
},
"browserslist": [
"> 1%",
"last 2 versions",
"not ie > 0"
]
}