-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 loc) · 1.86 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
{
"name": "@ketch-in/components",
"version": "0.1.6",
"description": "components for ketch-in",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"typings": "./dist/index.d.ts",
"scripts": {
"clean": "rm -rf dist",
"build": "npm run clean && npm run build:common && npm run build:types",
"prebuild:common": "esbuild --outdir=dist --platform=node --format=cjs src/*.ts --sourcemap --bundle",
"build:common": "esbuild --out-extension:.js=.mjs --outdir=dist --platform=node --format=esm src/*.ts --sourcemap --bundle",
"build:types": "tsc --emitDeclarationOnly --declaration --project tsconfig.json",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook",
"prepublish": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ketch-in/ketch-in-components.git"
},
"author": "Sotaneum <gnyontu39@gmail.com>",
"contributors": [
"firejune <firejune@gmail.com>",
"jiyoon127"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/ketch-in/ketch-in-components/issues"
},
"homepage": "https://ketch-in.github.io/ketch-in-components",
"devDependencies": {
"@babel/core": "^7.20.5",
"@storybook/addon-actions": "^6.5.14",
"@storybook/addon-essentials": "^6.5.14",
"@storybook/addon-interactions": "^6.5.14",
"@storybook/addon-links": "^6.5.14",
"@storybook/builder-webpack4": "^6.5.14",
"@storybook/html": "^6.5.14",
"@storybook/manager-webpack4": "^6.5.14",
"@storybook/testing-library": "0.0.13",
"@typescript-eslint/eslint-plugin": "^5.33.1",
"@typescript-eslint/parser": "^5.33.1",
"babel-loader": "^8.3.0",
"eslint": "^8.22.0",
"less": "^4.1.3",
"sass": "^1.54.5",
"stylus": "^0.59.0",
"typescript": "^4.9.4"
},
"dependencies": {
"esbuild": "0.16.15"
},
"keywords": [
"component"
]
}