-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
106 lines (106 loc) · 3.32 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
{
"name": "patternfly-svelte",
"version": "0.0.1",
"license": "MIT",
"type": "module",
"scripts": {
"dev": "vite dev",
"build": "vite build",
"preview": "vite preview",
"checkssss": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json",
"check": "svelte-check --tsconfig ./tsconfig.json",
"check:watch": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json --watch",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build",
"test:e2e": "playwright test",
"test": "npm run test:e2e && npm run test:unit -- --run",
"test:unit": "vitest",
"lint": "eslint . && prettier --check .",
"format": "prettier --write ."
},
"files": [
"dist",
"!dist/**/*.test.*",
"!dist/**/*.spec.*"
],
"sideEffects": [
"**/*.css"
],
"svelte": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"svelte": "./dist/index.js"
},
"./src/app.scss": "./dist/my-lib.css"
},
"peerDependencies": {
"svelte": "^5.0.0-next.1"
},
"devDependencies": {
"@chromatic-com/storybook": "^1.9.0",
"@fontsource/fira-mono": "^5.0.0",
"@neoconfetti/svelte": "^2.0.0",
"@playwright/test": "^1.45.3",
"@rollup/plugin-alias": "^5.0.0",
"@rollup/plugin-commonjs": "^25.0.0",
"@rollup/plugin-node-resolve": "^15.0.0",
"@rollup/plugin-terser": "^0.4.0",
"@rollup/plugin-typescript": "^11.0.0",
"@storybook/addon-essentials": "^8.3.6",
"@storybook/addon-interactions": "^8.3.6",
"@storybook/addon-links": "^8.3.6",
"@storybook/addon-svelte-csf": "^5.0.0-next.7",
"@storybook/blocks": "^8.3.6",
"@storybook/svelte": "^8.3.6",
"@storybook/sveltekit": "^8.3.6",
"@storybook/test": "^8.3.6",
"@sveltejs/adapter-auto": "^3.0.0",
"@sveltejs/adapter-static": "^3.0.6",
"@sveltejs/kit": "^2.0.0",
"@sveltejs/vite-plugin-svelte": "^4.0.0-next.6",
"@testing-library/svelte": "^5.2.4",
"@tsconfig/svelte": "^5.0.0",
"@types/eslint": "^9.6.0",
"autoprefixer": "^10.4.20",
"case-anything": "^3.1.0",
"eslint": "^9.7.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-svelte": "^2.36.0",
"fast-glob": "^3.3.2",
"fs-extra": "^11.2.0",
"glob": "^11.0.0",
"globals": "^15.0.0",
"postcss-load-config": "^6.0.1",
"prettier": "^3.3.2",
"prettier-plugin-svelte": "^3.2.6",
"remark": "^15.0.1",
"rollup": "^4.28.1",
"rollup-plugin-copy": "^3.5.0",
"rollup-plugin-css-only": "^4.5.2",
"rollup-plugin-node-builtins": "^2.1.2",
"rollup-plugin-postcss": "^4.0.2",
"rollup-plugin-svelte": "^7.2.2",
"sass": "^1.83.0",
"storybook": "^8.3.6",
"svelte": "^5.15.0",
"svelte-check": "^4.0.0",
"svelte-preprocess": "^5.1.0",
"sveltekit-adapter-html-like": "^0.3.2",
"tslib": "^2.6.0",
"typescript": "^5.0.0",
"typescript-eslint": "^8.0.0",
"vite": "^5.0.3",
"vite-plugin-copy": "^0.1.6",
"vite-plugin-svelte-inspector": "^0.2.1",
"vitest": "^2.0.4"
},
"packageManager": "[email protected]+sha512.a6b2f7906b721bba3d67d4aff083df04dad64c399707841b7acf00f6b133b7ac24255f2652fa22ae3534329dc6180534e98d17432037ff6fd140556e2bb3137e",
"overrides": {
"@sveltejs/vite-plugin-svelte": "^4.0.0-next.6"
},
"dependencies": {
"gh-pages": "^6.3.0"
}
}