-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpackage.json
117 lines (117 loc) · 4.21 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
112
113
114
115
116
117
{
"name": "@adobe/aem-sidekick",
"version": "7.5.1",
"description": "AEM Sidekick Extension",
"type": "module",
"scripts": {
"analyze": "cem analyze --litelement",
"lint": "eslint .",
"test:watch": "npm run test -- --watch",
"test": "wtr \"./test/**/*.test.js\"",
"docs": "npx jsdoc2md -c .jsdoc.json --files './src/*.js' > docs/API.md",
"semantic-release": "semantic-release",
"build:watch": "npm run build:dev && node build/watch.js",
"build:dev": "rimraf dist && rollup -c rollup.config-dev.js",
"build": "rimraf dist && rollup -c rollup.config.js && npm run build:analyze",
"build:analyze": "npm run analyze -- --globs src/extension/app/aem-sidekick.js",
"build:chrome": "node ./build/build-browser.js chrome",
"publish:prepare": "node ./build/publish-prepare.js",
"publish:chrome": "npm run publish:prepare && npm run build && node ./build/publish.js chrome",
"prepare": "husky"
},
"repository": {
"type": "git",
"url": "https://github.com/adobe/aem-sidekick"
},
"author": "Adobe",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/adobe/aem-sidekick/issues"
},
"homepage": "https://www.aem.live/",
"mocha": {
"require": [
"test/setup-env.js"
],
"reporter": "mocha-multi-reporters",
"reporter-options": "configFile=.mocha-multi.json"
},
"dependencies": {
"@lit/context": "1.1.4",
"@spectrum-web-components/action-button": "0.43.0",
"@spectrum-web-components/action-group": "0.43.0",
"@spectrum-web-components/action-menu": "0.43.0",
"@spectrum-web-components/badge": "0.49.0",
"@spectrum-web-components/base": "0.43.0",
"@spectrum-web-components/button": "0.43.0",
"@spectrum-web-components/dialog": "0.43.0",
"@spectrum-web-components/divider": "0.43.0",
"@spectrum-web-components/icon": "0.43.0",
"@spectrum-web-components/icons": "0.43.0",
"@spectrum-web-components/icons-workflow": "0.43.0",
"@spectrum-web-components/illustrated-message": "0.43.0",
"@spectrum-web-components/menu": "0.43.0",
"@spectrum-web-components/overlay": "0.43.0",
"@spectrum-web-components/picker": "0.43.0",
"@spectrum-web-components/popover": "0.49.0",
"@spectrum-web-components/progress-circle": "0.43.0",
"@spectrum-web-components/search": "0.43.0",
"@spectrum-web-components/status-light": "0.43.0",
"@spectrum-web-components/switch": "0.49.0",
"@spectrum-web-components/tabs": "0.49.0",
"@spectrum-web-components/table": "0.43.0",
"@spectrum-web-components/textfield": "0.43.0",
"@spectrum-web-components/theme": "0.43.0",
"@spectrum-web-components/toast": "0.43.0",
"lit": "3.2.1",
"mobx": "6.13.6"
},
"devDependencies": {
"@adobe/eslint-config-helix": "2.0.9",
"@adobe/fetch": "4.2.0",
"@babel/eslint-parser": "7.26.8",
"@babel/plugin-proposal-decorators": "7.25.9",
"@custom-elements-manifest/analyzer": "0.10.4",
"@open-wc/eslint-config": "12.0.3",
"@open-wc/testing": "4.0.0",
"@rollup/plugin-babel": "6.0.4",
"@rollup/plugin-node-resolve": "16.0.0",
"@rollup/plugin-replace": "6.0.2",
"@semantic-release/changelog": "6.0.3",
"@semantic-release/exec": "7.0.3",
"@semantic-release/git": "10.0.1",
"semantic-release-discord-bot": "1.1.0",
"semantic-release-slack-bot": "4.0.2",
"@types/chrome": "0.0.307",
"@types/mocha": "10.0.10",
"@web/rollup-plugin-html": "2.3.0",
"@web/rollup-plugin-import-meta-assets": "2.2.1",
"@web/test-runner": "0.20.0",
"@web/test-runner-commands": "0.9.0",
"ajv": "8.17.1",
"archiver": "7.0.1",
"babel-plugin-istanbul": "7.0.0",
"chokidar": "4.0.3",
"codecov": "3.8.3",
"eslint": "8.57.1",
"eslint-plugin-mobx": "0.0.13",
"fetch-mock": "9.11.0",
"fs-extra": "11.3.0",
"husky": "9.1.7",
"jsdoc-to-markdown": "9.1.1",
"lint-staged": "15.4.3",
"nock": "14.0.1",
"rimraf": "6.0.1",
"rollup": "4.34.9",
"rollup-plugin-copy": "3.5.0",
"rollup-plugin-esbuild": "6.2.1",
"semantic-release": "24.2.3",
"semantic-release-react-native": "1.12.2",
"shelljs": "0.8.5",
"sinon": "19.0.2"
},
"lint-staged": {
"*.js": "eslint"
},
"customElements": "custom-elements.json"
}