-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
111 lines (111 loc) · 2.84 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
{
"name": "datocms-plugin-external-audio-field",
"description": "DatoCMS Plugin to add an embedded Mixcloud, Soundcloud, Spotify or Anghami field",
"homepage": "https://github.com/novemberfiveco/datocms-plugin-external-audio-field/blob/master/README.md",
"license": "MIT",
"keywords": [
"datocms-plugin",
"embed",
"audio",
"spotify",
"soundcloud",
"mixcloud",
"anghami"
],
"version": "1.2.3",
"private": false,
"dependencies": {
"@types/node": "^20.1.2",
"@types/react": "^18.2.6",
"datocms-plugin-sdk": "^0.7.12",
"datocms-react-ui": "^0.7.12",
"lodash": "^4.17.21",
"query-string": "^8.1.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-scripts": "5.0.1",
"typescript": "^4.9.5"
},
"scripts": {
"start": "cross-env BROWSER='none' PUBLIC_URL='/' react-scripts start",
"build": "cross-env PUBLIC_URL='.' react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject",
"prepublishOnly": "npm run build",
"release": "release-it",
"ci:eslint": "eslint --cache --cache-location node_modules/.cache/eslint-cache",
"ci:tsc": "tsc --noEmit"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"sideEffects": false,
"devDependencies": {
"@release-it/conventional-changelog": "^5.1.1",
"@types/lodash": "^4.14.194",
"@types/react-dom": "^18.2.4",
"cross-env": "^7.0.3",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-simple-import-sort": "^10.0.0",
"release-it": "^15.10.3"
},
"publishConfig": {
"access": "public"
},
"datoCmsPlugin": {
"title": "External Audio Field",
"previewImage": "docs/preview.mp4",
"coverImage": "docs/cover.png",
"entryPoint": "build/index.html",
"permissions": []
},
"files": [
"build",
"docs"
],
"release-it": {
"git": {
"commitMessage": "chore: release v${version}"
},
"github": {
"release": true,
"autoGenerate": true,
"tokenRef": "GITHUB_TOKEN"
},
"plugins": {
"@release-it/conventional-changelog": {
"preset": {
"name": "conventionalcommits",
"types": [
{
"type": "feat",
"section": "Features"
},
{
"type": "fix",
"section": "Bug Fixes"
},
{
"type": "perf",
"section": "Performance improvements"
}
]
},
"infile": "CHANGELOG.md",
"ignoreRecommendedBump": true
}
}
}
}