-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
83 lines (83 loc) · 2.48 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
{
"name": "stenciljs-components",
"version": "2.0.5",
"description": "A collection of StencilJS UI components.",
"homepage": "https://sanjeetkumaritoutlook.github.io/stenciljs-components/",
"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/stenciljs-components/stenciljs-components.esm.js",
"exports": {
".": {
"import": "./dist/stenciljs-components/stenciljs-components.esm.js",
"require": "./dist/stenciljs-components/stenciljs-components.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.js",
"types": "./loader/index.d.ts"
}
},
"repository": {
"type": "git",
"url": "https://github.com/sanjeetkumaritoutlook/stenciljs-components.git"
},
"files": [
"dist/",
"loader/"
],
"scripts": {
"build": "stencil build",
"start": "stencil build --dev --watch --serve",
"test": "stencil test --spec --e2e",
"test.watch": "stencil test --spec --e2e --watchAll",
"generate": "stencil generate",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build"
},
"devDependencies": {
"@chromatic-com/storybook": "^3.2.2",
"@stencil/core": "^4.7.0",
"@storybook/addon-actions": "^8.4.7",
"@storybook/addon-controls": "^8.4.7",
"@storybook/addon-docs": "^8.4.7",
"@storybook/addon-essentials": "^8.4.7",
"@storybook/addon-webpack5-compiler-swc": "^1.0.5",
"@storybook/blocks": "^8.4.7",
"@storybook/test": "^8.4.7",
"@storybook/web-components": "^8.4.7",
"@storybook/web-components-webpack5": "^8.4.7",
"@types/jest": "^29.5.6",
"@types/node": "^16.18.11",
"jest": "^29.7.0",
"jest-cli": "^29.7.0",
"lit": "^3.2.1",
"sass": "^1.85.0",
"storybook": "^8.4.7"
},
"keywords": [
"stencil",
"components",
"ui"
],
"author": "Sanjeet Kumar",
"license": "MIT",
"dependencies": {
"@ionic/core": "^8.3.2",
"@stencil/router": "^1.0.1",
"@stripe/stripe-js": "^4.7.0",
"d3": "^7.9.0",
"easing-animation-frames": "^1.0.6",
"jest-json-reporter": "^1.2.2",
"jest-junit": "^16.0.0",
"puppeteer": "^23.6.1",
"stencil-router-v2": "^0.6.0",
"tinymce": "^7.4.1"
}
}