-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 1.64 KB
/
package.json
File metadata and controls
69 lines (69 loc) · 1.64 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
64
65
66
67
68
69
{
"name": "@etchteam/contentful",
"version": "1.2.3",
"description": "Helpers we use at Etch for working with Contentful",
"main": "dist/index.js",
"typings": "dist/index",
"files": [
"dist",
"tsconfig.json"
],
"bin": {
"etch-contentful-cli": "dist/cli.js"
},
"exports": {
".": {
"require": "./dist/index.js",
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/index.modern.mjs"
}
}
},
"scripts": {
"build": "microbundle src/*.ts --format modern,cjs",
"prepare": "husky install; npm run build"
},
"keywords": [
"contentful",
"migration",
"helpers"
],
"author": "etchteam",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/etchteam/contentful.git"
},
"bugs": {
"url": "https://github.com/etchteam/contentful/issues"
},
"devDependencies": {
"@commitlint/cli": "^18.2.0",
"@commitlint/config-conventional": "^18.1.0",
"@contentful/rich-text-types": "^16.3.0",
"@etchteam/eslint-config": "^1.7.1",
"@swc/core": "^1.10.7",
"@types/lodash": "^4.14.200",
"@types/node": "^20.8.10",
"eslint": "^8.54.0",
"husky": "^8.0.3",
"lint-staged": "^15.1.0",
"microbundle": "^0.15.1",
"prettier": "^3.1.0",
"typescript": "^5.2.2"
},
"dependencies": {
"@contentful/rich-text-react-renderer": "^15.19.0",
"commander": "^11.1.0",
"contentful": "^10.6.5",
"contentful-management": "^11.4.0",
"contentful-migration": "^4.17.3",
"dotenv": "^16.3.1",
"lodash": "^4.17.21",
"ts-node": "^10.9.1"
},
"publishConfig": {
"access": "public"
}
}