-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
64 lines (64 loc) · 1.89 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
{
"name": "@readthedocs/addons",
"version": "0.18.0",
"description": "Read the Docs Addons to embed into documentation pages",
"main": "dist/readthedocs-addons.js",
"scripts": {
"build": "webpack --mode=production --progress",
"clean": "rm -rfv dist/*; exit 0",
"dev": "webpack-dev-server --mode=development",
"lint": "prettier --check .",
"format": "prettier --write .",
"test": "web-test-runner",
"test:dev": "web-test-runner --watch",
"test:debug": "web-test-runner --manual --open"
},
"author": "Read the Docs, Inc",
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.25.2",
"@babel/plugin-syntax-import-assertions": "^7.25.6",
"@babel/preset-env": "^7.25.4",
"@fortawesome/fontawesome-svg-core": "^6.6.0",
"@fortawesome/free-solid-svg-icons": "^6.6.0",
"@open-wc/testing": "^4.0.0",
"@rollup/plugin-commonjs": "^26.0.1",
"@rollup/plugin-image": "^3.0.3",
"@rollup/plugin-json": "^6.1.0",
"@rollup/plugin-replace": "^5.0.7",
"@web/dev-server-import-maps": "^0.2.1",
"@web/test-runner": "^0.19.0",
"ajv": "^8.17.1",
"babel-loader": "^9.2.1",
"css-loader": "^7.1.2",
"diff-match-patch": "1.0.5",
"express-interceptor": "^1.2.0",
"jquery": "^3.7.1",
"keyboard-event-to-string": "^2.1.0",
"lit": "^3.2.0",
"object-path": "^0.11.8",
"prettier": "^3.3.3",
"rollup-plugin-lit-css": "^5.0.1",
"sinon": "^19.0.2",
"tippy.js": "^6.3.7",
"tslib": "^2.7.0",
"unfetch": "^4.2.0",
"visual-dom-diff": "^0.7.2",
"webpack": "^5.94.0",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^5.1.0"
},
"babel": {
"plugins": [
"@babel/plugin-syntax-import-assertions"
],
"env": {
"test": {
"plugins": [
"@babel/plugin-transform-modules-commonjs",
"@babel/plugin-transform-class-properties"
]
}
}
}
}