-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
88 lines (88 loc) · 2.26 KB
/
Copy pathpackage.json
File metadata and controls
88 lines (88 loc) · 2.26 KB
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
{
"name": "kerakit",
"version": "0.1.0",
"description": "A front-end library for Kera Apps",
"main": "./dist/index.cjs",
"module": "./dist/index.mjs",
"exports": {
".": {
"import": "./dist/index.mjs",
"require": "./dist/index.cjs"
},
"./core": {
"import": "./dist/core.mjs",
"require": "./dist/core.cjs"
},
"./runtime": {
"import": "./dist/runtime.mjs",
"require": "./dist/runtime.cjs"
},
"./components": {
"import": "./dist/components.mjs",
"require": "./dist/components.cjs"
},
"./package.json": "./package.json"
},
"files": [
"dist",
"src"
],
"scripts": {
"preinstall": "npx only-allow pnpm",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"dev": "vite",
"build": "vite build",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build"
},
"keywords": [
"kera",
"web-components"
],
"author": "Mutlu Can Yilmaz",
"email": "mtlcnylmz@gmail.com",
"license": "MIT",
"bugs": {
"url": "https://gitlab.com/kerahq/kerakit/issues"
},
"homepage": "https://gitlab.com/kerahq/kerakit#readme",
"devDependencies": {
"@chromatic-com/storybook": "^3",
"@eslint/css": "^0.6.0",
"@eslint/js": "^9.24.0",
"@eslint/json": "^0.11.0",
"@eslint/markdown": "^6.3.0",
"@rollup/plugin-node-resolve": "^16.0.1",
"@storybook/addon-essentials": "^8.6.12",
"@storybook/addon-links": "^8.6.12",
"@storybook/addon-mdx-gfm": "^8.6.12",
"@storybook/blocks": "^8.6.12",
"@storybook/experimental-addon-test": "^8.6.12",
"@storybook/test": "^8.6.12",
"@storybook/web-components": "^8.6.12",
"@storybook/web-components-vite": "^8.6.12",
"eslint": "^9.24.0",
"eslint-import-resolver-alias": "^1.1.2",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-jsdoc": "^50.6.9",
"eslint-plugin-storybook": "^0.12.0",
"globals": "^16.0.0",
"lit": "^3.3.0",
"prettier": "3.5.3",
"storybook": "^8.6.12",
"vite": "^6.3.3",
"vite-plugin-eslint": "^1.8.1"
},
"peerDependencies": {
"lit": "^3.3.0"
},
"dependencies": {
"@material/material-color-utilities": "^0.2.7"
},
"eslintConfig": {
"extends": [
"plugin:storybook/recommended"
]
}
}