forked from break-stuff/wc-storybook-helpers
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.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
{
"name": "wc-storybook-helpers",
"version": "1.0.7",
"description": "Helpers designed to make integrating Web Components with Storybook easier.",
"main": "index.js",
"types": "index.d.ts",
"type": "module",
"files": [
"index.js",
"index.d.ts",
"types.d.ts",
"/dist"
],
"scripts": {
"build": "tsc && cp src/storybook.d.ts dist/storybook.d.ts || copy src/storybook.d.ts dist/storybook.d.ts",
"deploy": "tsc && npm publish",
"test": "NODE_OPTIONS=--experimental-vm-modules npx jest",
"demo:v6": "tsc && cd demo/lit-app-v6 && npm run storybook",
"demo:v7": "tsc && cd demo/lit-app-v7 && npm run storybook"
},
"repository": {
"type": "git",
"url": "git+https://github.com/break-stuff/wc-storybook-helpers.git"
},
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/break-stuff/wc-storybook-helpers/issues"
},
"homepage": "https://github.com/break-stuff/wc-storybook-helpers#readme",
"keywords": [
"web-components",
"web components",
"custom elements",
"storybook",
"helpers",
"storybook web components"
],
"dependencies": {
"@open-wc/lit-helpers": "^0.5.1",
"@storybook/client-api": "^6.5.16",
"lit": "^2.6.1"
},
"devDependencies": {
"@types/jest": "^29.4.0",
"@types/node": "^18.6.3",
"@types/prettier": "^2.6.4",
"@typescript-eslint/eslint-plugin": "^5.48.1",
"@typescript-eslint/parser": "^5.48.1",
"eslint": "^8.32.0",
"ts-jest": "^29.0.5"
}
}