-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
78 lines (78 loc) · 2.16 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
{
"name": "@tapsioss/toast",
"version": "0.0.0-alpha-2",
"description": "A queue system for managing and displaying toast notifications.",
"main": "dist/index.js",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"type": "module",
"files": [
"dist"
],
"scripts": {
"build": "rm -rf dist && tsc",
"storybook": "storybook dev -p 3001",
"test": "wtr --watch",
"lint": "pnpm eslint ./src/**/* --fix",
"fmt": "pnpm prettier src/**/* --write --fix",
"docs:dev": "vitepress dev docs",
"docs:build": "vitepress build docs",
"docs:preview": "vitepress preview docs"
},
"devDependencies": {
"@eslint/js": "^9.1.1",
"@open-wc/lit-helpers": "^0.7.0",
"@open-wc/testing": "^4.0.0",
"@storybook/addon-actions": "^8.1.5",
"@storybook/addon-essentials": "^7.6.16",
"@storybook/addon-links": "^7.6.16",
"@storybook/blocks": "^7.6.16",
"@storybook/manager-api": "^8.1.5",
"@storybook/theming": "^8.1.5",
"@storybook/web-components": "^7.6.16",
"@storybook/web-components-vite": "^7.6.16",
"@tapsioss/icons": "0.0.0-alpha-8",
"@types/chai": "^4.3.12",
"@types/mocha": "^10.0.6",
"@types/node": "^20.12.10",
"@types/sinon": "^17.0.3",
"@web/dev-server": "^0.4.2",
"@web/dev-server-esbuild": "^1.0.2",
"@web/test-runner": "^0.18.0",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-lit": "^1.11.0",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-wc": "^2.1.0",
"prettier": "^3.2.5",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"sinon": "^18.0.0",
"storybook": "^7.6.16",
"tslib": "^2.6.2",
"typescript": "^5.3.3",
"typescript-eslint": "^7.7.1",
"vitepress": "^1.1.4"
},
"dependencies": {
"@tapsioss/web-components": "0.0.0-alpha-2",
"lit": "^3.1.2",
"tslib": "^2.4.0"
},
"repository": {
"type": "git",
"url": "https://github.com/Tap30/toast.git"
},
"homepage": "https://tap30.github.io/toast",
"bugs": {
"url": "https://github.com/Tap30/toast/issues"
},
"keywords": [
"toast",
"notifications",
"web components",
"lit",
"queue",
"frontend"
]
}