forked from pixtron/storybook-addon-docs-stencil
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 1.16 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
{
"name": "@23/storybook-addon-docs-stencil",
"version": "6.5.1",
"description": "Converts stencil.js JsonDoc to storybook ArgTypes",
"main": "dist/index.js",
"scripts": {
"start": "tsc -w",
"tsc": "tsc -d",
"clean": "rm -rf ./dist",
"build": "npm run clean && npm run lint && npm run tsc",
"lint": "eslint . --ext .ts --report-unused-disable-directives",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/23/storybook-addon-docs-stencil.git"
},
"bugs": {
"url": "https://github.com/23/storybook-addon-docs-stencil/issues"
},
"homepage": "https://github.com/23/storybook-addon-docs-stencil#readme",
"author": "Stefan Aebischer <[email protected]>",
"license": "MIT",
"dependencies": {
"@storybook/api": "^6.4.9",
"@storybook/client-logger": "^6.4.9",
"lodash": "^4.17.21"
},
"devDependencies": {
"@types/lodash": "^4.14.182",
"@typescript-eslint/eslint-plugin": "^5.8.0",
"@typescript-eslint/parser": "^5.8.0",
"eslint": "^8.5.0",
"typescript": "^4.5.4"
},
"files": [
"dist/**/*",
"*.js",
"*.d.ts"
]
}