-
Notifications
You must be signed in to change notification settings - Fork 22
/
package.json
76 lines (76 loc) · 2.26 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
{
"name": "wikipedia-preview",
"version": "1.12.4",
"description": "Shows Wikipedia article preview in a popup",
"main": "dist/wikipedia-preview.umd.cjs",
"type": "module",
"engines": {
"node": ">=17"
},
"files": [
"dist"
],
"module": "dist/wikipedia-preview.js",
"exports": {
".": {
"import": "./dist/wikipedia-preview.js",
"require": "./dist/wikipedia-preview.umd.cjs"
}
},
"scripts": {
"test": "vitest run",
"test:watch": "vitest watch",
"lint": "eslint . --ext .js",
"lint:fix": "eslint . --fix --ext .js",
"coverage": "vitest run --coverage",
"build": "vite build",
"build:watch": "vite build --watch",
"postbuild": "sh scripts/postbuild.sh",
"dev": "vite --open /demo/index.html",
"preview": "vite preview",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build",
"vba": "npx vite-bundle-visualizer",
"cypress:run": "eslint cypress --fix && cypress run",
"cypress:test:fix-lint": "eslint cypress --fix",
"prepack": "./scripts/prepack.sh"
},
"author": "Wikimedia Foundation",
"license": "MIT",
"devDependencies": {
"@storybook/addon-actions": "^7.5.3",
"@storybook/addon-essentials": "^7.5.3",
"@storybook/addon-links": "^7.5.3",
"@storybook/html": "^7.5.3",
"@storybook/html-vite": "^7.5.3",
"@vitest/coverage-v8": "^0.34.6",
"browserslist-config-wikimedia": "^0.5.1",
"bufferutil": "^4.0.8",
"cy-mobile-commands": "^0.3.0",
"cypress": "^13.5.1",
"eslint": "^8.56.0",
"eslint-config-wikimedia": "^0.26.0",
"eslint-plugin-cypress": "^2.15.1",
"eslint-plugin-no-only-tests": "^3.1.0",
"eslint-plugin-storybook": "^0.6.15",
"eslint-plugin-unicorn": "^49.0.0",
"jsdom": "^22.1.0",
"less": "^4.2.0",
"storybook": "^7.5.3",
"stylelint-config-wikimedia": "^0.16.1",
"stylelint-no-unsupported-browser-features": "^7.0.0",
"utf-8-validate": "^6.0.3",
"vite": "^5.0.0",
"vite-bundle-visualizer": "^0.11.0",
"vite-plugin-commonjs": "^0.10.1",
"vite-plugin-eslint": "^1.8.1",
"vitest": "^0.34.6"
},
"dependencies": {
"@floating-ui/dom": "1.6.5",
"dompurify": "^3.0.6"
},
"browserslist": [
"extends browserslist-config-wikimedia/modern"
]
}