forked from microsoft/app-store-badge
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 1.24 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
{
"name": "@microsoft/store-app-badge",
"private": true,
"version": "0.6.0",
"description": "Web component that renders a 'Get this app from the Microsoft Store' button. Detects the user's language and displays a localized app badge. If running in Edge, clicking the badge will skip the app launch prompt.",
"main": "dist/ms-store-badge.bundled.js",
"module": "dist/ms-store-badge.bundled.js",
"type": "module",
"scripts": {
"build:prod": "concurrently \"tsc\" \"rollup --config rollup.config.js\"",
"build:dev": "concurrently \"tsc --watch\" \"npm run serve\"",
"build": "npm run build:prod",
"serve": "wds --watch",
"lint:eslint": "eslint 'src/**/*.ts'"
},
"keywords": [
"web-components",
"typescript"
],
"author": "Microsoft",
"license": "BSD-3-Clause",
"dependencies": {
"uuid": "^9.0.1",
"wds": "^0.11.0",
"webkit": "^0.0.0"
},
"devDependencies": {
"@rollup/plugin-replace": "^2.3.3",
"@types/uuid": "^9.0.8",
"@web/dev-server": "0.1.31",
"@web/dev-server-rollup": "^0.3.17",
"concurrently": "^6.2.2",
"rollup": "^2.72.1",
"rollup-plugin-copy": "^3.4.0",
"rollup-plugin-summary": "^1.2.3",
"rollup-plugin-terser": "^7.0.2",
"typescript": "^4.9.5"
}
}