-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
109 lines (109 loc) · 3.41 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
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
{
"name": "@zedix/zedix-ui",
"version": "0.9.2",
"description": "A library of essential web components (lit-based), serving as a foundation for web apps or design systems.",
"author": "@zedix",
"license": "MIT",
"type": "module",
"repository": {
"type": "git",
"url": "https://github.com/zedix/zedix-ui.git"
},
"publishConfig": {
"registry": "https://npm.pkg.github.com/"
},
"files": [
"dist"
],
"main": "./dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
},
"./dist/components/*": "./dist/components/*"
},
"scripts": {
"analyze": "cem analyze --litelement",
"build": "vite build",
"build:storybook": "storybook build --output-dir='.storybook/build'",
"gen:react": "lit labs gen --framework=react",
"gen:vue": "lit labs gen --framework=vue",
"start": "tsc && concurrently -k -r \"tsc --watch --preserveWatchOutput\" \"wds\"",
"lint": "eslint ./src && prettier \"**/*.ts\" --check --ignore-path .gitignore",
"format": "eslint ./src . --fix && prettier \"**/*.ts\" --write --ignore-path .gitignore",
"prepublish_": "tsc && npm run analyze -- --exclude dist",
"publish": "yarn npm publish",
"release": "yarn changelogen --release",
"test": "web-test-runner --group default",
"test:component": "web-test-runner -- --watch --group",
"test:watch": "web-test-runner --watch --group default",
"storybook": "storybook dev -p 6006",
"typecheck": "tsc --noEmit --project ./tsconfig.json",
"prepare": "husky"
},
"dependencies": {
"@floating-ui/dom": "^1.6.13",
"embla-carousel": "^8.1.7",
"lit": "^3.2.1"
},
"devDependencies": {
"@commitlint/cli": "^19.6.1",
"@commitlint/config-conventional": "^19.6.0",
"@custom-elements-manifest/analyzer": "^0.10.4",
"@lit-labs/cli": "^0.6.5",
"@lit-labs/gen-wrapper-react": "^0.3.3",
"@lit-labs/gen-wrapper-vue": "^0.4.1",
"@open-wc/prettier-config": "^1.1.0",
"@open-wc/testing": "^4.0.0",
"@storybook/addon-essentials": "^8.1.10",
"@storybook/addon-links": "^8.1.10",
"@storybook/addon-themes": "^8.1.10",
"@storybook/blocks": "^8.1.10",
"@storybook/web-components": "^8.1.10",
"@storybook/web-components-vite": "^8.1.10",
"@types/mocha": "^10.0.7",
"@types/sinon": "^17.0.3",
"@typescript-eslint/eslint-plugin": "^7.13.1",
"@typescript-eslint/parser": "^7.13.1",
"@web/dev-server-esbuild": "^1.0.3",
"@web/test-runner": "^0.19.0",
"@web/test-runner-playwright": "^0.11.0",
"changelogen": "^0.5.7",
"concurrently": "^8.2.2",
"eslint": "^9.19.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-lit": "^1.14.0",
"eslint-plugin-storybook": "^0.8.0",
"eslint-plugin-wc": "^2.1.0",
"glob": "^10.4.5",
"globals": "^15.14.0",
"husky": "^9.1.7",
"lint-staged": "^15.4.3",
"prettier": "^3.4.2",
"sinon": "^18.0.1",
"storybook": "^8.1.10",
"typescript": "^5.7.3",
"vite": "^5.3.1",
"vite-plugin-dts": "^3.9.1"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"pre-commit": "lint-staged"
}
},
"prettier": "@open-wc/prettier-config",
"lint-staged": {
"*.ts": [
"eslint --fix --no-warn-ignored",
"prettier --write",
"git add"
]
},
"engines": {
"node": ">=20"
},
"packageManager": "[email protected]"
}