forked from ForkbombEu/didroom-components
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
67 lines (67 loc) · 2.04 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
{
"name": "@didroom/monochrome",
"version": "1.0.0",
"description": "Didroom web components",
"main": "dist/index.cjs.js",
"module": "dist/index.js",
"es2015": "dist/esm/index.js",
"es2017": "dist/esm/index.js",
"types": "dist/types/index.d.ts",
"collection": "dist/collection/collection-manifest.json",
"collection:main": "dist/collection/index.js",
"unpkg": "dist/didroom-components/didroom-components.esm.js",
"repository": {
"type": "git",
"url": "https://github.com/forkbombeu/didroom-components.git"
},
"files": [
"dist/",
"loader/"
],
"scripts": {
"clean": "rm -rf .stencil/ dist/ loader www",
"build": "stencil build",
"test": "stencil test --spec --e2e",
"test:watch": "stencil test --spec --e2e --watchAll",
"generate": "stencil generate",
"build-storybook": "storybook build --docs -s dist",
"dev": "NODE_ENV=development npm-run-all -p dev:*",
"dev:start": "stencil build --watch --serve",
"dev:storybook": "storybook dev -p 6006 -s dist"
},
"dependencies": {
"@stencil/core": "^4.11.0",
"@tailwindcss/line-clamp": "^0.4.4"
},
"devDependencies": {
"@ionic/core": "^7.6.6",
"@stencil/sass": "^3.0.8",
"@storybook/addon-a11y": "^7.6.10",
"@storybook/addon-designs": "^7.0.9",
"@storybook/addon-docs": "^7.6.10",
"@storybook/addon-essentials": "^7.6.10",
"@storybook/addon-interactions": "^7.6.10",
"@storybook/addon-links": "^7.6.10",
"@storybook/addon-themes": "^7.6.10",
"@storybook/blocks": "^7.6.10",
"@storybook/html": "^7.6.10",
"@storybook/html-vite": "^7.6.10",
"@storybook/test": "^7.6.10",
"@types/jest": "^29.5.6",
"@types/node": "^20.11.7",
"jest": "^29.7.0",
"jest-cli": "^29.7.0",
"npm-run-all": "^4.1.5",
"puppeteer": "21.9.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"stencil-tailwind-plugin": "^1.8.0",
"storybook": "^7.6.10",
"tailwindcss": "^3.4.1",
"typescript": "^5.3.3"
},
"license": "AGPL-3.0-only",
"publishConfig": {
"access": "public"
}
}