-
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.96 KB
/
Copy pathpackage.json
File metadata and controls
69 lines (69 loc) · 1.96 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": "local-plugin-viewer",
"productName": "Plugin Viewer",
"version": "1.0.0",
"author": "Justin Thompson",
"keywords": [
"local-addon"
],
"bgColor": "#FCE181",
"icon": "icon.svg",
"slug": "plugin-viewer",
"description": "View WordPress plugins in Local",
"renderer": "lib/renderer.js",
"main": "lib/main.js",
"repository": {
"type": "git",
"url": "https://github.com/devjusty/local-plugin-viewer"
},
"bugs": {
"url": "https://github.com/devjusty/local-plugin-viewer/issues"
},
"license": "MIT",
"scripts": {
"clean": "node -e \"require('fs').rmSync('lib', { recursive: true, force: true })\"",
"build": "npm run clean && tsc && babel src --out-dir lib --extensions \".tsx,.jsx\" --copy-files",
"watch": "concurrently \"tsc -w\" \"babel src --out-dir lib --extensions \\\".tsx,.jsx\\\" --watch --copy-files\"",
"prepare": "npm run build",
"lint": "eslint src",
"test": "npm run build && node --test test/*.test.cjs"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@babel/cli": "^8.0.4",
"@babel/core": "^8.0.1",
"@babel/preset-env": "^8.0.2",
"@babel/preset-react": "^8.0.1",
"@babel/preset-typescript": "^8.0.1",
"@types/fs-extra": "^11.0.4",
"@types/node": "^26.1.2",
"@types/react": "^18.3.23",
"@types/react-dom": "^18.3.7",
"@typescript-eslint/eslint-plugin": "^8.66.0",
"@typescript-eslint/parser": "^8.66.0",
"concurrently": "^10.0.4",
"eslint": "^10.8.0",
"globals": "^17.9.0",
"typescript": "^5.9.3"
},
"dependencies": {
"@getflywheel/local": "^10.1.1",
"@getflywheel/local-components": "^17.8.2",
"classnames": "^2.5.1",
"fs-extra": "^11.4.0",
"lodash": "^4.17.21",
"react": "^18.3.1",
"react-dom": "^18.3.1"
},
"engines": {
"local-by-flywheel": "^5.0.0"
},
"bundleDependencies": [
"@getflywheel/local-components",
"classnames",
"fs-extra",
"lodash",
"react",
"react-dom"
]
}