-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
87 lines (87 loc) · 2.66 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
{
"name": "@puzzleitc/puzzle-shell",
"version": "4.2.4",
"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 && npm run format:lint",
"lint:ts": "tsc --noEmit",
"lint:eslint": "eslint .",
"lint:eslint:fix": "eslint . --fix",
"lint:fix": "npm run lint:eslint:fix && npm run format",
"format": "prettier --write --ignore-unknown .",
"format:lint": "prettier --check .",
"format:upgrade": "npm install --save-exact prettier@latest && npm run format",
"manifest": "custom-elements-manifest analyze --litelement --globs=\"src/components/*.ts\"",
"prepare": "husky"
},
"dependencies": {
"@fontsource/roboto": "5.1.1",
"@fontsource/roboto-mono": "5.1.1",
"lit": "3.2.1"
},
"devDependencies": {
"@custom-elements-manifest/analyzer": "0.10.4",
"@eslint/js": "9.17.0",
"@storybook/addon-a11y": "8.4.7",
"@storybook/addon-essentials": "8.4.7",
"@storybook/addon-links": "8.4.7",
"@storybook/addon-storysource": "8.4.7",
"@storybook/blocks": "8.4.7",
"@storybook/web-components": "8.4.7",
"@storybook/web-components-vite": "8.4.7",
"@trivago/prettier-plugin-sort-imports": "5.2.1",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-lit-a11y": "4.1.4",
"globals": "15.14.0",
"husky": "9.1.7",
"lint-staged": "15.3.0",
"prettier": "3.4.2",
"storybook": "8.4.7",
"typescript": "5.7.2",
"typescript-eslint": "8.19.1",
"vite": "6.0.7"
},
"lint-staged": {
"**/*": [
"prettier --write --ignore-unknown"
]
},
"customElementsManifest": "custom-elements.json",
"customElements": "custom-elements.json"
}