-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.51 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
{
"name": "scroll-shadow-element",
"version": "2.0.6",
"description": "A small web component to enhance scrollable elements with dynamic scroll indicators.",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/ingmarh/scroll-shadow-element.git"
},
"author": "Ingmar Hergst",
"type": "module",
"exports": "./dist/index.js",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"customElements": "./custom-elements.json",
"files": [
"dist/**",
"custom-elements.json"
],
"scripts": {
"dev": "web-dev-server --open demo/ --watch",
"test": "web-test-runner test/*.test.js --playwright --browsers chromium firefox ${CI:+webkit}",
"build": "tsup",
"lint": "eslint",
"lint:fix": "npm run lint -- --fix",
"prepublishOnly": "npm run build"
},
"keywords": [
"scroll",
"shadow",
"overflow",
"indicator",
"custom",
"element",
"web",
"component"
],
"devDependencies": {
"@eslint/js": "^9.15.0",
"@open-wc/testing": "^4.0.0",
"@stylistic/eslint-plugin": "^2.11.0",
"@total-typescript/tsconfig": "^1.0.4",
"@web/dev-server": "^0.4.6",
"@web/dev-server-esbuild": "^1.0.3",
"@web/test-runner": "^0.19.0",
"@web/test-runner-playwright": "^0.11.0",
"@web/test-runner-visual-regression": "^0.10.0",
"esbuild-plugin-minify-html-literals": "^2.0.1",
"eslint": "^9.15.0",
"globals": "^15.12.0",
"tsup": "^8.3.5",
"typescript": "^5.6.3",
"typescript-eslint": "^8.15.0"
}
}