-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
82 lines (82 loc) · 2.58 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
{
"name": "share-menu",
"version": "5.1.0",
"description": "A complete and simple to use share menu.",
"main": "share-menu.js",
"module": "share-menu.js",
"browser": "share-menu.js",
"types": "share-menu.d.ts",
"type": "module",
"scripts": {
"start": "concurrently bun:watch bun:serve",
"watch": "bun run --bun rollup -w -c rollup.config.ts",
"serve": "bun run --bun wds --port 8080 --watch --app-index 'demo/index.html'",
"build": "NODE_ENV=production bun run --bun rollup -c rollup.config.ts",
"lint:src": "bun run eslint --ext .ts 'src/**/*.{js,ts}'",
"lint:test": "bun run eslint --ext .ts 'test/**/*.{js,ts}' --config .eslintrc.test",
"lint": "concurrently bun:lint:src bun:lint:test",
"format:src": "bun run lint:src -- --fix",
"format:test": "bun run lint:test -- --fix",
"format": "concurrently bun:format:src bun:format:test",
"prepublishOnly": "bun run build",
"test": "bun run --bun wtr",
"upgrade-interactive": "ncu --interactive"
},
"devDependencies": {
"@esm-bundle/chai-as-promised": "^7.1.1",
"@open-wc/testing": "^4.0.0",
"@types/chai-as-promised": "^7.1.8",
"@types/facebook-js-sdk": "^3.3.10",
"@types/glob": "^8.1.0",
"@typescript-eslint/eslint-plugin": "^7.1.1",
"@typescript-eslint/parser": "^7.1.1",
"@web/dev-server": "^0.4.3",
"@web/dev-server-esbuild": "^1.0.2",
"@web/test-runner": "^0.18.1",
"@web/test-runner-commands": "^0.9.0",
"@web/test-runner-playwright": "^0.11.0",
"concurrently": "^8.2.2",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"glob": "^10.3.10",
"npm-check-updates": "^16.14.15",
"prettier": "^3.2.5",
"rollup": "^4.12.1",
"rollup-plugin-filesize": "^10.0.0",
"rollup-plugin-minify-html-literals": "^1.2.6",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-typescript2": "^0.36.0",
"sinon": "^17.0.1",
"typescript": "^5.4.2"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Dabolus/share-menu.git"
},
"keywords": [
"custom-element",
"web-component",
"share-menu",
"web-share-api"
],
"author": "Giorgio Garasto <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/Dabolus/share-menu/issues"
},
"homepage": "https://github.com/Dabolus/share-menu#readme",
"files": [
"LICENSE",
"demo",
"helpers.d.ts",
"helpers.js",
"helpers.js.map",
"share-menu.d.ts",
"share-menu.js",
"share-menu.js.map",
"targets",
"package.json",
"README.md"
]
}