forked from rossrobino/drab
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
81 lines (81 loc) · 2.08 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
{
"name": "drab",
"version": "3.0.0",
"description": "An Unstyled Svelte Component Library",
"keywords": [
"components",
"Svelte",
"SvelteKit",
"Breakpoint",
"ContextMenu",
"Copy",
"DataTable",
"Details",
"Editor",
"FrettedChord",
"Fullscreen",
"Popover",
"Share",
"Sheet",
"YouTube"
],
"homepage": "https://drab.robino.dev",
"license": "MIT",
"author": {
"name": "Ross Robino",
"url": "https://robino.dev"
},
"repository": "github:rossrobino/drab",
"scripts": {
"dev": "vite dev",
"build": "vite build && npm run package",
"preview": "vite preview",
"package": "svelte-kit sync && svelte-package && publint",
"prepublishOnly": "npm run package",
"check": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json",
"check:watch": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json --watch",
"lint": "prettier --check . && eslint .",
"format": "prettier --write . --plugin=prettier-plugin-svelte --plugin=prettier-plugin-tailwindcss",
"pub": "npm publish --access public",
"doc": "node src/scripts/documentProps.js && node src/scripts/documentExamples.js && node src/scripts/copyReadMe.js"
},
"exports": {
".": {
"types": "./dist/index.d.ts",
"svelte": "./dist/index.js"
}
},
"files": [
"dist"
],
"dependencies": {
"svelte": "^4.2.0"
},
"devDependencies": {
"@sveltejs/adapter-vercel": "^3.0.3",
"@sveltejs/kit": "^1.22.6",
"@sveltejs/package": "^2.2.1",
"@tailwindcss/typography": "^0.5.9",
"@types/node": "^20.5.3",
"@typescript-eslint/eslint-plugin": "^6.4.1",
"@typescript-eslint/parser": "^6.4.1",
"autoprefixer": "^10.4.15",
"eslint": "^8.47.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-svelte": "^2.33.0",
"marked": "^7.0.4",
"postcss": "^8.4.28",
"prettier": "^3.0.2",
"prettier-plugin-svelte": "^3.0.3",
"prettier-plugin-tailwindcss": "^0.5.3",
"publint": "^0.2.2",
"svelte-check": "^3.5.0",
"tailwindcss": "^3.3.3",
"tslib": "^2.6.2",
"typescript": "^5.1.6",
"vite": "^4.4.9"
},
"svelte": "./dist/index.js",
"types": "./dist/index.d.ts",
"type": "module"
}