-
Notifications
You must be signed in to change notification settings - Fork 97
/
package.json
77 lines (77 loc) · 2.53 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
{
"name": "@rgossiaux/svelte-headlessui",
"description": "A complete, full-featured, unofficial Svelte port of Headless UI, an unstyled, fully accessible UI component library.",
"keywords": [
"svelte",
"headlessui",
"svelte3",
"svelte-components",
"headless",
"sveltejs"
],
"homepage": "https://svelte-headlessui.goss.io",
"bugs": {
"url": "https://github.com/rgossiaux/svelte-headlessui/issues"
},
"license": "MIT",
"repository": "github:rgossiaux/svelte-headlessui",
"version": "2.0.0",
"scripts": {
"dev": "vite dev",
"build": "vite build",
"package": "svelte-kit sync && svelte-package && find package/ -type f -exec sed -i '' -e 's/process.env.NODE_ENV/\"production\"/' {} \\; && publint",
"preview": "vite preview",
"check": "svelte-check --tsconfig ./tsconfig.json",
"check:watch": "svelte-check --tsconfig ./tsconfig.json --watch",
"lint": "prettier --ignore-path .gitignore --check --plugin-search-dir=. . && eslint --ignore-path .gitignore .",
"format": "prettier --ignore-path .gitignore --write --plugin-search-dir=. .",
"test": "jest"
},
"peerDependencies": {
"svelte": "^3.47.0"
},
"devDependencies": {
"@babel/cli": "^7.16.0",
"@babel/preset-env": "^7.16.5",
"@rgossiaux/svelte-heroicons": "^0.1.2",
"@sveltejs/adapter-auto": "^2.1.0",
"@sveltejs/kit": "^1.20.2",
"@sveltejs/package": "1.0",
"@tailwindcss/forms": "^0.4.0",
"@tailwindcss/typography": "^0.5.0",
"@testing-library/jest-dom": "^5.16.1",
"@testing-library/svelte": "^3.0.3",
"@types/jest": "^27.0.3",
"@typescript-eslint/eslint-plugin": "^4.31.1",
"@typescript-eslint/parser": "^4.31.1",
"autoprefixer": "^10.3.7",
"babel-jest": "^29.0.0",
"cssnano": "^5.0.8",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-svelte3": "^3.2.1",
"jest": "^29.0.0",
"jest-environment-jsdom": "^29.6.1",
"mdsvex": "^0.9.8",
"postcss": "^8.3.9",
"postcss-load-config": "^3.1.0",
"prettier": "^2.4.1",
"prettier-plugin-svelte": "^2.4.0",
"publint": "^0.1.12",
"rehype-autolink-headings": "^6.1.1",
"rehype-slug": "^5.0.1",
"svelte": "^3.47.0",
"svelte-check": "^3.4.3",
"svelte-inline-compile": "^0.0.1",
"svelte-jester": "^2.1.5",
"svelte-popperjs": "^1.2.7",
"svelte-preprocess": "^5.0.0",
"svelte2tsx": "^0.6.15",
"tailwindcss": "^3.0.0",
"ts-jest": "^29.0.0",
"tslib": "^2.3.1",
"typescript": "^5.0.0",
"vite": "^4.3.9"
},
"type": "module"
}