forked from radix-svelte/radix-svelte
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
106 lines (106 loc) · 2.88 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": "radix-svelte",
"version": "0.3.5",
"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 --plugin-search-dir . --check . && eslint .",
"lint:write": "prettier --plugin-search-dir . --write . && eslint . --fix",
"format": "prettier --plugin-search-dir . --write .",
"release": "bash ./scripts/release.sh",
"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": [
"./dist/index.d.ts"
],
"internal/*": [
"./dist/internal/*/index.d.ts"
],
"internal/types": [
"./dist/internal/types.d.ts"
]
}
},
"files": [
"dist",
"!dist/**/tests"
],
"peerDependencies": {
"svelte": "^3.58.0"
},
"dependencies": {
"@floating-ui/core": "^1.2.6",
"@floating-ui/dom": "^1.2.6"
},
"devDependencies": {
"@axe-core/playwright": "^4.6.1",
"@fontsource/inter": "^4.5.15",
"@iconify-json/radix-icons": "^1.1.10",
"@playwright/experimental-ct-svelte": "^1.32.1",
"@playwright/test": "^1.28.1",
"@sveltejs/adapter-auto": "^2.0.0",
"@sveltejs/kit": "^1.5.0",
"@sveltejs/package": "^2.0.0",
"@testing-library/svelte": "^3.2.2",
"@typescript-eslint/eslint-plugin": "^5.45.0",
"@typescript-eslint/parser": "^5.45.0",
"@vercel/analytics": "^1.0.0",
"autoprefixer": "^10.4.7",
"clsx": "^1.2.1",
"eslint": "^8.28.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-svelte3": "^4.0.0",
"glob": "^9.3.2",
"highlight.js": "^11.7.0",
"jsdom": "^21.1.1",
"playwright": "^1.32.1",
"postcss": "^8.4.14",
"postcss-load-config": "^4.0.1",
"prettier": "^2.8.7",
"prettier-plugin-svelte": "^2.8.1",
"prettier-plugin-tailwindcss": "^0.2.6",
"publint": "^0.1.9",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"svelte": "^3.54.0",
"svelte-check": "^3.0.1",
"svelte-highlight": "^7.2.1",
"svelte-htm": "^1.2.0",
"svelte-preprocess": "^4.10.7",
"tailwind-merge": "^1.12.0",
"tailwindcss": "^3.3.0",
"tslib": "^2.4.1",
"typescript": "^5.0.0",
"unplugin-icons": "^0.16.1",
"vite": "^4.2.0",
"vitest": "^0.25.3"
},
"svelte": "./dist/index.js",
"types": "./dist/index.d.ts",
"type": "module"
}