-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
69 lines (69 loc) · 1.75 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
{
"name": "@muban/storybook-preset-webpack",
"version": "8.0.0-rc.0",
"description": "Storybook for Muban: The webpack preset.",
"keywords": [
"muban",
"storybook",
"webpack",
"preset"
],
"author": "Arjan van Wijk",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/mubanjs/muban-storybook.git"
},
"bugs": {
"url": "https://github.com/mubanjs/muban-storybook/issues"
},
"homepage": "https://github.com/mubanjs/muban-storybook/tree/main/packages/preset-webpack#readme",
"type": "module",
"exports": {
".": {
"node": "./dist/index.js",
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
},
"./preset": {
"node": "./dist/index.js",
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
},
"./package.json": "./package.json"
},
"main": "dist/index.js",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist/**/*",
"README.md",
"*.js",
"*.d.ts"
],
"scripts": {
"dev": "npm run build -- --watch",
"build": "tsc -p ./tsconfig.json",
"typecheck": "tsc --project tsconfig.json --noEmit --noUnusedLocals",
"lint": "npm-run-all lint:*",
"lint:eslint": "eslint --ext .js,.jsx,.ts,.tsx,.mjs,.cjs,.mts,.cts . --cache --cache-location node_modules/.cache/.eslintcache",
"fix": "npm-run-all fix:*",
"fix:eslint": "npm run lint:eslint -- --fix",
"prepublishOnly": "npm run build"
},
"dependencies": {
"@storybook/core-webpack": "7.0.6",
"@types/node": "^16.0.0",
"ts-loader": "^9.4.2",
"webpack": "5"
},
"devDependencies": {
"typescript": "~5.0.4"
},
"engines": {
"node": ">=16.0.0"
},
"publishConfig": {
"access": "public"
}
}