-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
102 lines (102 loc) · 2.83 KB
/
package.json
File metadata and controls
102 lines (102 loc) · 2.83 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
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
{
"name": "@onesysadmin/strapi-plugin-update-static-content",
"version": "5.2.6",
"description": "An strapi plugin to rebuild and deploy your SSG website via Github Actions.",
"strapi": {
"name": "update-static-content",
"description": "An strapi plugin to rebuild and deploy your SSG website via Github Actions.",
"kind": "plugin",
"displayName": "Update Static Content"
},
"exports": {
"./package.json": "./package.json",
"./strapi-admin": {
"types": "./dist/admin/src/index.d.ts",
"source": "./admin/src/index.ts",
"import": "./dist/admin/index.mjs",
"require": "./dist/admin/index.js",
"default": "./dist/admin/index.js"
},
"./strapi-server": {
"types": "./dist/server/index.d.ts",
"source": "./server/index.ts",
"import": "./dist/server/index.mjs",
"require": "./dist/server/index.js",
"default": "./dist/server/index.js"
}
},
"files": [
"dist"
],
"scripts": {
"build": "strapi-plugin build",
"watch": "strapi-plugin watch",
"watch:link": "strapi-plugin watch:link",
"verify": "strapi-plugin verify",
"lint": "eslint",
"lint:fix": "eslint --fix"
},
"homepage": "https://github.com/everythinginjs/strapi-plugin-update-static-content#update-static-content---strapi-v5",
"bugs": {
"url": "https://github.com/everythinginjs/strapi-plugin-update-static-content/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/everythinginjs/strapi-plugin-update-static-content.git"
},
"author": {
"name": "Amir Mahmoudi",
"email": "amixengineer@gmail.com"
},
"license": "MIT",
"maintainers": [
{
"name": "Amir Mahmoudi",
"email": "amixengineer@gmail.com"
}
],
"engines": {
"node": ">=20.19.0 <=24.x.x",
"npm": ">=6.0.0"
},
"dependencies": {
"@octokit/rest": "^22.0.1",
"@strapi/design-system": "^2.2.0",
"@strapi/icons": "^2.2.0",
"date-fns": "^4.1.0",
"react-intl": "^6.8.9"
},
"devDependencies": {
"@eslint/js": "^9.39.3",
"@strapi/sdk-plugin": "^6.0.1",
"@strapi/strapi": "^5.37.1",
"@strapi/typescript-utils": "^5.37.1",
"@stylistic/eslint-plugin": "^5.9.0",
"@types/react": "^18.3.27",
"@types/react-dom": "^18.3.7",
"eslint": "^9.39.3",
"eslint-plugin-react": "^7.37.5",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-router-dom": "^6.30.2",
"styled-components": "^6.3.11",
"typescript": "^5.9.3",
"typescript-eslint": "^8.56.1"
},
"peerDependencies": {
"@strapi/strapi": "^5.37.1",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-router-dom": "^6.30.2",
"styled-components": "^6.3.11"
},
"keywords": [
"strapi",
"strapi-plugin",
"github-actions",
"plugin"
],
"publishConfig": {
"registry": "https://npm.pkg.github.com"
}
}