-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
99 lines (99 loc) · 3.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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
{
"name": "@epa-wg/custom-element-dist",
"version": "0.0.32",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"postinstall": "bash bin/postinstall.sh",
"prepublishOnly": "bash bin/build.sh",
"preview": "vite preview",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build",
"test": "node bin/vitest/vitest-browser-importmaps.mjs && vitest --coverage.enabled --coverage.all --no-file-parallelism --watch=false",
"test:ff": "yarn test --browser.name=firefox",
"test:watch": "vitest --inspect-brk --no-file-parallelism --browser.headless=false --test-timeout=0",
"test:storybook": "test-storybook",
"sb": "yarn storybook",
"t": "node ./node_modules/vitest/vitest.mjs --no-file-parallelism --watch --browser.headless=false src/stories/module-url.test.stories.ts",
"tf": "node ./node_modules/vitest/vitest.mjs --no-file-parallelism --browser.name=firefox --watch --browser.headless=false src/stories/module-url.test.stories.ts"
},
"dependencies": {
"@epa-wg/custom-element": "0.0.32"
},
"devDependencies": {
"@chromatic-com/storybook": "^3.2.2",
"@storybook/addon-essentials": "^8.4.2",
"@storybook/addon-interactions": "^8.4.2",
"@storybook/addon-links": "^8.4.2",
"@storybook/addon-mdx-gfm": "^8.4.2",
"@storybook/blocks": "^8.4.2",
"@storybook/test": "^8.4.2",
"@storybook/test-runner": "0.19.1",
"@storybook/web-components": "^8.4.2",
"@storybook/web-components-vite": "^8.4.2",
"@vitest/browser": "2.0.5",
"@vitest/coverage-istanbul": "2.0.5",
"coverage-svg": "0.0.3",
"lit": "3.2.0",
"msw": "2.4.5",
"msw-storybook-addon": "^2.0.4",
"playwright": "1.47.0",
"storybook": "^8.4.2",
"typescript": "5.6.2",
"vite": "5.4.8",
"vitest": "2.0.5",
"webdriverio": "9.0.9"
},
"msw": {
"workerDirectory": [
"public"
]
},
"keywords": [
"WebComponent",
"Declarative Custom Element",
"XSLT",
"JS",
"javascript"
],
"author": {
"name": "Sasha Firsov",
"email": "[email protected]",
"url": "https://blog.firsov.net/"
},
"files": [
"*",
"dist/**/*",
"storybook-static/**/*",
"coverage/**/*"
],
"exports": {
".": {
"import": "./dist/assets/custom-element-bundle.js",
"require": "./dist/assets/custom-element-bundle.cjs"
},
"./custom-element": {
"import": "./dist/assets/custom-element-bundle.js",
"require": "./dist/assets/custom-element-bundle.cjs"
},
"./package.json": "./package.json"
},
"repository": {
"type": "git",
"url": "https://github.com/EPA-WG/custom-element-dist.git"
},
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/EPA-WG/custom-element/issues"
},
"homepage": "https://github.com/EPA-WG/custom-element#readme",
"funding": {
"type": "patreon",
"url": "https://www.patreon.com/sashafirsov"
},
"web-types": [
"./src/custom-element/ide/web-types-dce.json",
"./src/custom-element/ide/web-types-xsl.json"
]
}