-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
88 lines (88 loc) · 2.51 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
{
"name": "louisette",
"description": "Accessible Svelte component primitives",
"version": "0.8.2",
"keywords": [
"louisette",
"headless",
"components",
"primitives",
"svelte"
],
"repository": {
"type": "git",
"url": "git+https://github.com/ubermanu/louisette.git"
},
"license": "MIT",
"author": "Emmanuel Vodor <manu@paca.happy-dev.fr>",
"type": "module",
"exports": {
".": {
"types": "./dist/index.d.ts",
"svelte": "./dist/index.js"
}
},
"svelte": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist",
"!dist/**/*.test.*",
"!dist/**/*.spec.*"
],
"scripts": {
"build": "vite build && npm run package",
"check": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json",
"check:watch": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json --watch",
"dev": "vite dev",
"format": "prettier --plugin-search-dir . --write .",
"lint": "prettier --plugin-search-dir . --check .",
"package": "svelte-kit sync && svelte-package && publint && rimraf ./dist/**/*/example ./dist/README.svelte ./dist/**/*/README.svelte ./dist/**/*/tests",
"prepublishOnly": "npm run package",
"preview": "vite preview",
"test": "vitest"
},
"prettier": "@ubermanu/prettier-config",
"devDependencies": {
"@fontsource-variable/caveat": "^5.0.1",
"@sveltejs/adapter-auto": "^2.0.1",
"@sveltejs/adapter-static": "^2.0.2",
"@sveltejs/kit": "^1.5.0",
"@sveltejs/package": "^2.0.0",
"@tailwindcss/typography": "^0.5.9",
"@testing-library/svelte": "^3.2.2",
"@testing-library/user-event": "^14.4.3",
"@ubermanu/prettier-config": "^1.7.1",
"autoprefixer": "^10.4.14",
"canvas-confetti": "^1.6.0",
"case": "^1.6.3",
"highlight.js": "^11.8.0",
"jest-mock": "^29.5.0",
"jsdom": "^21.1.1",
"less": "^4.1.3",
"lucide-svelte": "^0.221.0",
"mdsvex": "^0.10.6",
"postcss": "^8.4.23",
"postcss-import": "^15.1.0",
"postcss-nested": "^6.0.1",
"prettier": "^2.8.0",
"prettier-plugin-svelte": "^2.8.1",
"prettier-plugin-tailwindcss": "^0.3.0",
"publint": "^0.1.9",
"rimraf": "^5.0.1",
"svelte": "^3.54.0",
"svelte-check": "^3.0.1",
"svelte-highlight": "^7.3.0",
"tailwindcss": "^3.3.2",
"tslib": "^2.4.1",
"typescript": "^5.0.0",
"vite": "^4.3.0",
"vitest": "^0.25.3"
},
"peerDependencies": {
"svelte": "^3.54.0"
},
"dependencies": {
"@floating-ui/dom": "^1.4.3",
"focusable-selectors": "^0.8.1"
}
}