-
Notifications
You must be signed in to change notification settings - Fork 25
/
package.json
110 lines (110 loc) · 2.69 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
110
{
"name": "svelte-headlessui",
"description": "HeadlessUI components for Svelte",
"version": "0.0.44",
"type": "module",
"keywords": [
"svelte",
"component",
"headless",
"ui",
"tailwind",
"tailwindcss",
"tailwindui",
"renderless",
"combobox",
"autocomplete",
"dialog",
"modal",
"disclosure",
"listbox",
"select",
"menu",
"dropdown",
"popover",
"radio",
"radio-group",
"switch",
"button",
"toggle",
"toggle-button",
"toggle-switch",
"tab",
"tabs",
"panels",
"transition"
],
"files": [
"dist"
],
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"svelte": "./dist/index.js"
}
},
"module": "dist/index.js",
"types": "dist/index.d.ts",
"homepage": "https://captaincodeman.github.io/svelte-headlessui/",
"repository": {
"type": "git",
"url": "https://github.com/captaincodeman/svelte-headlessui.git"
},
"author": {
"name": "Simon Green",
"email": "[email protected]",
"url": "https://www.captaincodeman.com/"
},
"license": "MIT",
"scripts": {
"dev": "vite dev",
"build": "vite build",
"preview": "vite preview",
"package": "svelte-kit sync && tsup && publint",
"prepublishOnly": "npm run package",
"check": "svelte-check --tsconfig ./tsconfig.json",
"check:watch": "svelte-check --tsconfig ./tsconfig.json --watch",
"lint": "eslint --max-warnings 0 --ignore-path ./.gitignore --report-unused-disable-directives \"**/*.{js,cjs,mjs,ts,cts,mts,svelte}\"",
"format": "prettier --write .",
"sourcemap": "source-map-explorer dist/*.js",
"test": "playwright test",
"test:ui": "playwright test --ui",
"test:report": "playwright show-report",
"test:update": "playwright test --update-snapshots"
},
"peerDependencies": {
"svelte": "^4.0.0 || ^5.0.0"
},
"devDependencies": {
"@playwright/test": "^1.48.1",
"@sveltejs/adapter-static": "^3.0.5",
"@sveltejs/kit": "^2.7.2",
"@sveltejs/vite-plugin-svelte": "^3.1.2",
"@tailwindcss/forms": "^0.5.9",
"@tailwindcss/typography": "^0.5.15",
"@types/node": "^20.17.0",
"@typescript-eslint/eslint-plugin": "^7.18.0",
"@typescript-eslint/parser": "^7.18.0",
"autoprefixer": "^10.4.20",
"eslint": "^8.57.1",
"eslint-plugin-svelte": "^2.46.0",
"highlight.js": "^11.10.0",
"postcss": "^8.4.47",
"postcss-load-config": "^6.0.1",
"prettier-plugin-svelte": "^3.2.7",
"prettier-plugin-tailwindcss": "^0.6.8",
"publint": "^0.2.12",
"source-map-explorer": "^2.5.3",
"svelte": "^4.2.19",
"svelte-check": "^3.8.6",
"svelte-doc-kit": "^0.0.10",
"svelte-preprocess": "^6.0.3",
"svelte-transition": "^0.0.17",
"tailwindcss": "^3.4.14",
"tslib": "^2.8.0",
"tsup": "^8.3.0",
"typescript": "^5.6.3",
"vite": "^5.4.10"
}
}