This repository has been archived by the owner on Aug 21, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 26
/
package.json
112 lines (112 loc) · 3.03 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
111
112
{
"name": "radix-svelte",
"version": "0.9.0",
"license": "MIT",
"scripts": {
"dev": "vite dev",
"build": "vite build && npm run package",
"preview": "vite preview",
"package": "svelte-kit sync && svelte-package && publint",
"prepublishOnly": "npm run package",
"test": "npm run test:unit && npm run test:pw",
"test:unit": "vitest --run",
"test:pw": "playwright test -c playwright-ct.config.ts",
"check": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json",
"check:watch": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json --watch",
"lint": "prettier --cache --check . && eslint . --cache",
"lint:write": "prettier --cache --write . && eslint . --fix --cache",
"format": "prettier --plugin-search-dir . --write .",
"release": "changeset publish",
"create:cmp": "node ./scripts/create-component.js"
},
"exports": {
".": {
"types": "./dist/index.d.ts",
"svelte": "./dist/index.js"
},
"./internal/*": {
"types": "./dist/internal/*/index.d.ts",
"svelte": "./dist/internal/*/index.js"
},
"./internal/types": {
"types": "./dist/internal/types.d.ts",
"svelte": "./dist/internal/types.js"
}
},
"typesVersions": {
">4.0": {
"index.d.ts": [
"./dist/index.d.ts"
],
"internal/*": [
"./dist/internal/*/index.d.ts"
],
"internal/types": [
"./dist/internal/types.d.ts"
]
}
},
"files": [
"dist",
"!dist/**/tests"
],
"peerDependencies": {
"svelte": "^4.1.1"
},
"dependencies": {
"@floating-ui/core": "^1.3.1",
"@floating-ui/dom": "^1.4.5"
},
"devDependencies": {
"@axe-core/playwright": "^4.7.3",
"@changesets/cli": "^2.26.2",
"@fontsource/overpass": "^5.0.5",
"@fontsource/overpass-mono": "^5.0.5",
"@fontsource/source-code-pro": "^5.0.5",
"@iconify-json/lucide": "^1.1.112",
"@iconify-json/simple-icons": "^1.1.61",
"@playwright/experimental-ct-svelte": "^1.36.1",
"@playwright/test": "^1.36.1",
"@sveltejs/adapter-auto": "^2.1.0",
"@sveltejs/kit": "^1.22.3",
"@sveltejs/package": "^2.2.0",
"@testing-library/svelte": "^4.0.3",
"@typescript-eslint/eslint-plugin": "^6.1.0",
"@typescript-eslint/parser": "^6.1.0",
"@vercel/analytics": "^1.0.1",
"autoprefixer": "^10.4.14",
"clsx": "^2.0.0",
"eslint": "^8.45.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-svelte": "^2.32.4",
"highlight.js": "^11.8.0",
"jsdom": "^22.1.0",
"postcss": "^8.4.27",
"postcss-load-config": "^4.0.1",
"prettier": "^3.0.0",
"prettier-plugin-svelte": "^3.0.0",
"prettier-plugin-tailwindcss": "^0.4.1",
"publint": "^0.1.16",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"svelte": "^4.1.1",
"svelte-check": "^3.4.6",
"svelte-highlight": "^7.3.0",
"svelte-htm": "^1.2.0",
"svelte-preprocess": "^5.0.4",
"tailwind-merge": "^1.14.0",
"tailwindcss": "^3.3.3",
"tslib": "^2.6.0",
"typescript": "^5.1.6",
"unplugin-icons": "^0.16.5",
"vite": "^4.4.6",
"vitest": "^0.33.0"
},
"svelte": "./dist/index.js",
"types": "./dist/index.d.ts",
"type": "module",
"packageManager": "pnpm@8.4.0",
"engines": {
"node": ">= 16"
}
}