-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
48 lines (48 loc) · 1.21 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
{
"name": "tesla-components",
"version": "0.1.3",
"type": "module",
"main": "dist/index.es.js",
"exports": {
".": "./dist/index.es.js"
},
"types": "types/index.d.ts",
"files": [
"dist",
"types"
],
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"prepare": "husky install",
"lint": "eslint -f pretty \"src/**/*.ts\""
},
"dependencies": {
"@lion/button": "^0.18.1",
"@lit-labs/react": "^1.1.1",
"@types/react": "^18.0.27",
"lit": "^2.4.1",
"react": "^18.2.0"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.50.0",
"@typescript-eslint/parser": "^5.50.0",
"eslint": "^8.33.0",
"eslint-config-prettier": "^8.6.0",
"eslint-config-standard-with-typescript": "^33.0.0",
"eslint-formatter-pretty": "^4.1.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-lit-a11y": "^1.1.0-next.1",
"eslint-plugin-n": "^15.6.1",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-promise": "^6.1.1",
"husky": "^8.0.3",
"prettier": "^2.8.3",
"typescript": "^4.9.5",
"vite": "^4.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/riccardo-vettore/tesla-components"
}
}