forked from puzzle/puzzle-shell
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
93 lines (93 loc) · 2.71 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
{
"name": "@puzzleitc/puzzle-shell",
"version": "4.0.0",
"description": "The standard design for Puzzle tools",
"keywords": [
"design",
"theme",
"look"
],
"author": "Mathis Hofer <[email protected]>",
"license": "Apache-2.0",
"homepage": "http://puzzle.github.com/puzzle-shell",
"bugs": {
"url": "https://github.com/puzzle/puzzle-shell/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/puzzle/puzzle-shell.git"
},
"type": "module",
"module": "./dist/puzzle-shell.js",
"types": "./dist/puzzle-shell.d.ts",
"exports": {
".": "./dist/puzzle-shell.js",
"./*": "./dist/*"
},
"files": [
"*.md",
"LICENSE",
"custom-elements.json",
"dist"
],
"scripts": {
"start": "npm run storybook",
"dev": "vite",
"build": "tsc && npm run build:bundle && npm run build:modules",
"build:modules": "tsc --noEmit false --allowImportingTsExtensions false --declaration true --outDir ./dist",
"build:bundle": "vite build",
"preview": "vite preview",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build",
"lint": "npm run lint:ts && npm run lint:eslint",
"lint:ts": "tsc --noEmit",
"lint:eslint": "eslint --ext .ts,.html . --ignore-path .gitignore",
"lint:fix": "eslint --ext .ts,.html . --fix --ignore-path .gitignore",
"manifest": "custom-elements-manifest analyze --litelement --globs=\"src/components/*.ts\"",
"prepare": "husky install"
},
"dependencies": {
"@fontsource/roboto": "^5.0.8",
"@fontsource/roboto-mono": "^5.0.16",
"lit": "^3.1.0"
},
"devDependencies": {
"@custom-elements-manifest/analyzer": "^0.9.0",
"@storybook/addon-essentials": "^7.6.5",
"@storybook/addon-links": "^7.6.5",
"@storybook/addon-storysource": "^7.6.5",
"@storybook/blocks": "^7.6.5",
"@storybook/web-components": "^7.6.5",
"@storybook/web-components-vite": "^7.6.5",
"@trivago/prettier-plugin-sort-imports": "^4.3.0",
"@typescript-eslint/eslint-plugin": "^6.14.0",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.0.1",
"husky": "^8.0.3",
"lint-staged": "^15.2.0",
"prettier": "3.1.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"storybook": "^7.6.5",
"typescript": "^5.3.3",
"vite": "^5.0.10"
},
"eslintConfig": {
"extends": [
"eslint:recommended",
"plugin:@typescript-eslint/recommended",
"plugin:prettier/recommended"
]
},
"lint-staged": {
"**/*.{ts,js}": [
"eslint --fix"
],
"**/*": [
"prettier --write --ignore-unknown"
]
},
"customElementsManifest": "custom-elements.json",
"customElements": "custom-elements.json"
}