-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
92 lines (92 loc) · 2.66 KB
/
package.json
File metadata and controls
92 lines (92 loc) · 2.66 KB
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
{
"name": "sveltlana",
"version": "0.1.0",
"description": "Headless Svelte components CLI - Add beautiful components to your Svelte projects",
"keywords": ["svelte", "components", "headless", "cli", "ui"],
"repository": {
"type": "git",
"url": "https://github.com/MordechaiHadad/sveltlana.git"
},
"homepage": "https://github.com/MordechaiHadad/sveltlana#readme",
"bin": {
"sveltlana": "./bin/index.js"
},
"scripts": {
"dev": "vite dev",
"build": "vite build && bun run package",
"build:cli": "tsc --project src/cli/tsconfig.json",
"preview": "vite preview",
"package": "svelte-kit sync && svelte-package && publint",
"prepublishOnly": "bun run package && bun run build:cli",
"check": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json",
"check:watch": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json --watch",
"test": "vitest",
"lint": "prettier --check . && eslint .",
"format": "prettier --write ."
},
"exports": {
".": {
"types": "./dist/index.d.ts",
"svelte": "./dist/index.js"
},
"./Accordion": {
"svelte": "./dist/sveltlana/components/Accordion/index.svelte"
},
"./Carousel": {
"svelte": "./dist/sveltlana/components/Carousel/index.svelte"
},
"./Dropdown": {
"svelte": "./dist/sveltlana/components/Dropdown/index.svelte"
},
"./Popover": {
"svelte": "./dist/sveltlana/components/Popover/index.svelte"
},
"./Swipable": {
"svelte": "./dist/sveltlana/components/Swipable/index.svelte"
}
},
"files": [
"dist",
"bin",
"src/lib",
"!dist/**/*.test.*",
"!dist/**/*.spec.*"
],
"peerDependencies": {
"svelte": "^5.0.0"
},
"devDependencies": {
"@sveltejs/adapter-auto": "^3.3.1",
"@sveltejs/kit": "^2.18.0",
"@sveltejs/package": "^2.3.10",
"@sveltejs/vite-plugin-svelte": "^4.0.4",
"@tailwindcss/postcss": "^4.0.9",
"@types/eslint": "^8.56.12",
"@types/fs-extra": "^11.0.4",
"@types/node": "^20.0.0",
"eslint": "^9.21.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-svelte": "^2.46.1",
"globals": "^15.15.0",
"postcss": "^8.5.3",
"prettier": "^3.5.3",
"prettier-plugin-svelte": "^3.3.3",
"publint": "^0.1.16",
"svelte": "^5.22.3",
"svelte-check": "^3.8.6",
"tailwindcss": "^4.0.9",
"tslib": "^2.8.1",
"typescript": "^5.8.2",
"typescript-eslint": "^8.26.0",
"vite": "^5.4.14",
"vitest": "^1.6.1",
"tailwind-merge": "^2.6.0"
},
"svelte": "./dist/index.js",
"types": "./dist/index.d.ts",
"type": "module",
"dependencies": {
"fs-extra": "^11.2.0",
"commander": "^12.1.0"
}
}