-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 2.2 KB
/
Copy pathpackage.json
File metadata and controls
74 lines (74 loc) · 2.2 KB
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
{
"name": "lido-player",
"version": "0.0.2-beta-14",
"description": "Stencil Component For Lido Player",
"main": "dist/index.cjs.js",
"module": "dist/index.js",
"types": "dist/types/index.d.ts",
"collection": "dist/collection/collection-manifest.json",
"collection:main": "dist/collection/index.js",
"unpkg": "dist/lido-player/lido-player.esm.js",
"exports": {
".": {
"import": "./dist/lido-player/lido-player.esm.js",
"require": "./dist/lido-player/lido-player.cjs.js"
},
"./my-component": {
"import": "./dist/components/my-component.js",
"types": "./dist/components/my-component.d.ts"
},
"./loader": {
"import": "./loader/index.js",
"require": "./loader/index.cjs",
"types": "./loader/index.d.ts"
}
},
"repository": {
"type": "git",
"url": "https://github.com/chimple/lido-player.git"
},
"files": [
"dist/",
"loader/"
],
"scripts": {
"build": "stencil build && npm run build-storybook",
"start": "stencil build --dev --watch --serve",
"dev": "npm run start",
"test": "stencil test --spec --e2e",
"test.watch": "stencil test --spec --e2e --watchAll",
"generate": "stencil generate",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build --output-dir www/storybook"
},
"devDependencies": {
"@chromatic-com/storybook": "^3.2.6",
"@stencil/core": "^4.7.0",
"@storybook/addon-essentials": "^8.6.12",
"@storybook/blocks": "^8.6.12",
"@storybook/experimental-addon-test": "^8.6.12",
"@storybook/test": "^8.6.12",
"@storybook/web-components": "^8.6.12",
"@storybook/web-components-vite": "^8.6.12",
"@types/jest": "^29.5.14",
"@types/node": "^16.18.11",
"@types/react": "^19.1.2",
"jest": "^29.7.0",
"jest-cli": "^29.7.0",
"lit": "^3.2.1",
"puppeteer": "^21.11.0",
"storybook": "^8.6.12"
},
"license": "MIT",
"dependencies": {
"@rive-app/canvas": "2.32.0",
"brotli": "^1.3.3",
"css-filter-converter": "^1.0.110",
"i18next": "^25.6.1",
"i18next-browser-languagedetector": "^8.2.0",
"jszip": "^3.10.1",
"lido-player": "^0.0.2-alpha-77",
"mathjs": "^14.4.0",
"tinycolor2": "^1.6.0"
}
}