-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 1.55 KB
/
package.json
File metadata and controls
69 lines (69 loc) · 1.55 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-addon-notes",
"productName": "Notes",
"version": "1.2.3",
"author": "Clay Griffiths",
"keywords": [
"local-addon"
],
"bgColor": "#51bb7b",
"icon": "icon.svg",
"slug": "notes",
"description": "Add notes to your Local by Flywheel sites!",
"renderer": "lib/renderer.js",
"main": "lib/main.js",
"repository": {
"type": "git",
"url": "https://github.com/getflywheel/local-addon-notes"
},
"bugs": {
"url": "https://github.com/getflywheel/local-addon-notes/issues"
},
"license": "MIT",
"scripts": {
"build": "tsc",
"watch": "yarn run build --watch",
"prepare": "npm run build"
},
"devDependencies": {
"@getflywheel/eslint-config-local": "1.0.4",
"@getflywheel/local": "^9.2.4",
"@types/classnames": "^2.3.4",
"@types/prop-types": "^15.7.14",
"@types/react": "^19.0.12",
"eslint": "^9.23.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-react": "^7.37.4",
"typescript": "^5.8.2"
},
"peerDependencies": {
"react": ">= 16.4.0",
"react-dom": ">= 16.4.0",
"react-router-dom": "^4.3.1"
},
"dependencies": {
"@getflywheel/local-components": "^17.8.0",
"classnames": "^2.5.1",
"lodash": "^4.17.21",
"path-to-regexp": "^8.2.0",
"prop-types": "^15.6.2",
"react": "^19.1.0",
"react-dom": "^19.1.0",
"react-router-dom": "^7.4.1"
},
"bundledDependencies": [
"classnames",
"lodash",
"dateformat",
"@getflywheel/local-components",
"prop-types"
],
"engines": {
"local-by-flywheel": ">=6.5.2"
},
"resolutions": {
"trim": "1.0.1",
"path-to-regexp": "1.9.0",
"react-router": "7.5.2"
}
}