-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 878 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 878 Bytes
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
{
"name": "@deenruv/seo-plugin",
"version": "1.0.16",
"homepage": "https://deenruv.com/",
"license": "MIT",
"files": [
"dist/**/*"
],
"main": "./dist/plugin-server/index.js",
"exports": {
".": "./dist/plugin-server/index.js",
"./plugin-server": "./dist/plugin-server/index.js"
},
"scripts": {
"build": "rimraf dist && tsc --build",
"watch": "tsc --build --watch",
"lint": "eslint .",
"lint:fix": "eslint --fix .",
"zeus": "zeus http://localhost:6100/admin-api ./src/plugin-server && zeus http://localhost:6100/admin-api ./src/plugin-ui"
},
"dependencies": {
"@deenruv/common": "workspace:^",
"@deenruv/react-ui-devkit": "workspace:^"
},
"peerDependencies": {
"@deenruv/core": "^1.0.0"
},
"devDependencies": {
"@deenruv/core": "workspace:^",
"rimraf": "^5.0.10",
"typescript": "5.3.3"
}
}