-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
99 lines (99 loc) · 2.97 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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
{
"name": "@open-wa/whatsapp-button",
"version": "4.1.2",
"description": "Simple Whatsapp button web component",
"license": "MIT",
"author": "Mohammed Shah <@smashah>",
"main": "dist/src/index.js",
"module": "dist/src/index.js",
"repository": {
"type": "git",
"url": "https://github.com/smashah/whatsapp-button.git"
},
"publishConfig": {
"access": "public"
},
"exports": {
".": "./dist/src/index.js",
"./whatsapp-button.js": "./dist/src/whatsapp-button.js"
},
"scripts": {
"analyze": "cem analyze --litelement",
"start": "tsc && concurrently -k -r \"tsc --watch --preserveWatchOutput\" \"wds\"",
"build": "tsc && npm run analyze -- --exclude dist",
"prepublish": "tsc && npm run analyze -- --exclude dist",
"lint": "eslint --ext .ts,.html . --ignore-path .gitignore && prettier \"**/*.ts\" --check --ignore-path .gitignore",
"format": "eslint --ext .ts,.html . --fix --ignore-path .gitignore && prettier \"**/*.ts\" --write --ignore-path .gitignore",
"test": "tsc && wtr --coverage",
"test:watch": "tsc && concurrently -k -r \"tsc --watch --preserveWatchOutput\" \"wtr --watch\"",
"storybook": "tsc && npm run analyze -- --exclude dist && concurrently -k -r \"tsc --watch --preserveWatchOutput\" \"wds -c .storybook/server.mjs\"",
"storybook:build": "tsc && npm run analyze -- --exclude dist && build-storybook -o docs",
"deploy-storybook": "storybook-to-ghpages"
},
"dependencies": {
"@material/mwc-button": "^0.25.1",
"@vaadin/vaadin-button": "^21.0.1",
"@vaadin/vaadin-dialog": "^21.0.1",
"@vaadin/vaadin-progress-bar": "^21.0.1",
"lit": "^2.0.0-rc.3"
},
"devDependencies": {
"@custom-elements-manifest/analyzer": "^0.5.3",
"@open-wc/eslint-config": "^4.3.0",
"@open-wc/testing": "next",
"@storybook/storybook-deployer": "^2.8.10",
"@typescript-eslint/eslint-plugin": "^4.30.0",
"@typescript-eslint/parser": "^4.30.0",
"@web/dev-server": "^0.1.22",
"@web/dev-server-storybook": "next",
"@web/test-runner": "next",
"concurrently": "^6.2.1",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"husky": "^7.0.2",
"lint-staged": "^11.1.2",
"prettier": "^2.3.2",
"tslib": "^2.3.1",
"typescript": "^4.4.2"
},
"customElements": "custom-elements.json",
"eslintConfig": {
"parser": "@typescript-eslint/parser",
"extends": [
"@open-wc",
"prettier"
],
"plugins": [
"@typescript-eslint"
],
"rules": {
"no-unused-vars": "off",
"@typescript-eslint/no-unused-vars": [
"error"
],
"import/no-unresolved": "off",
"import/extensions": [
"error",
"always",
{
"ignorePackages": true
}
]
}
},
"prettier": {
"singleQuote": true,
"arrowParens": "avoid"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.ts": [
"eslint --fix",
"prettier --write"
]
}
}