-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
81 lines (81 loc) · 2.33 KB
/
package.json
File metadata and controls
81 lines (81 loc) · 2.33 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
{
"name": "@patternfly/svelte",
"version": "0.1.0",
"type": "module",
"description": "PatternFly components built with Svelte",
"scripts": {
"dev": "vite",
"build": "vite build && npm run build:types",
"build:types": "svelte-check --tsconfig ./tsconfig.json",
"wc:gen": "node scripts/generate-webcomponents.js",
"build:webcomponents": "vite build --config vite.webcomponents.config.ts",
"preview": "vite preview",
"test": "vitest",
"test:ui": "vitest --ui",
"test:coverage": "vitest --coverage",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build",
"check": "svelte-check --tsconfig ./tsconfig.json",
"check:watch": "svelte-check --tsconfig ./tsconfig.json --watch",
"lint": "prettier --check . && eslint .",
"format": "prettier --write ."
},
"exports": {
".": {
"types": "./dist/index.d.ts",
"svelte": "./dist/index.js"
},
"./styles.css": "./dist/styles.css",
"./webcomponents": {
"import": "./dist/webcomponents/webcomponents.js",
"require": "./dist/webcomponents/webcomponents.umd.cjs"
}
},
"files": [
"dist"
],
"keywords": [
"svelte",
"patternfly",
"components",
"ui",
"library"
],
"author": "",
"license": "MIT",
"devDependencies": {
"@playwright/test": "^1.40.0",
"@storybook/addon-docs": "^10.1.11",
"@storybook/addon-links": "^10.0.7",
"@storybook/svelte": "^10.0.7",
"@storybook/svelte-vite": "^10.0.7",
"@sveltejs/vite-plugin-svelte": "^6.2.4",
"@testing-library/jest-dom": "^6.1.5",
"@testing-library/svelte": "^4.0.3",
"@types/node": "^20.10.0",
"@typescript-eslint/eslint-plugin": "^8.47.0",
"@typescript-eslint/parser": "^8.47.0",
"@vitest/coverage-v8": "^4.0.18",
"@vitest/ui": "^4.0.18",
"eslint": "^8.55.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-storybook": "^0.9.0",
"eslint-plugin-svelte": "^2.35.1",
"jsdom": "^23.0.1",
"prettier": "^3.1.1",
"prettier-plugin-svelte": "^3.1.2",
"storybook": "^10.2.17",
"svelte": "^5.53.6",
"svelte-check": "^3.6.0",
"typescript": "^5.3.3",
"vite": "^7.3.1",
"vite-plugin-dts": "^3.9.1",
"vitest": "^4.0.18"
},
"dependencies": {
"@patternfly/patternfly": "^6.4.0"
},
"peerDependencies": {
"svelte": "^5.53.6"
}
}