-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
83 lines (83 loc) · 2.1 KB
/
package.json
File metadata and controls
83 lines (83 loc) · 2.1 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
{
"name": "@cicerchie/ui",
"version": "0.9.2",
"description": "A set of web components for building fast user interfaces.",
"author": "https://github.com/cicerchia",
"license": "MIT",
"homepage": "https://github.com/cicerchie/ui#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/cicerchie/ui.git"
},
"funding": {
"type": "individual",
"url": "https://github.com/sponsors/cicerchia"
},
"bugs": {
"url": "https://github.com/cicerchie/ui/issues"
},
"keywords": [
"svelte ui",
"svelte",
"tailwind ui",
"tailwindcss",
"web components",
"component library",
"design system"
],
"publishConfig": {
"access": "public"
},
"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": "playwright test",
"check": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json",
"check:watch": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json --watch",
"test:unit": "vitest",
"lint": "prettier --plugin-search-dir . --check . && eslint .",
"format": "prettier --plugin-search-dir . --write .",
"storybook": "cd storybook & npm run dev"
},
"exports": {
".": {
"types": "./dist/index.d.ts",
"svelte": "./dist/index.js"
}
},
"files": [
"dist",
"!dist/**/*.test.*",
"!dist/**/*.spec.*"
],
"peerDependencies": {
"svelte": "^3.54.0"
},
"devDependencies": {
"@playwright/test": "1.32.2",
"@sveltejs/adapter-auto": "2.0.0",
"@sveltejs/kit": "1.15.2",
"@sveltejs/package": "2.0.2",
"@typescript-eslint/eslint-plugin": "5.57.1",
"@typescript-eslint/parser": "5.57.1",
"eslint": "8.38.0",
"eslint-config-prettier": "8.8.0",
"eslint-plugin-svelte3": "4.0.0",
"prettier": "2.8.7",
"prettier-plugin-svelte": "2.10.0",
"publint": "0.1.11",
"svelte": "3.58.0",
"svelte-check": "3.2.0",
"tailwindcss": "3.3.1",
"tslib": "2.5.0",
"typescript": "5.0.4",
"vite": "4.2.1",
"vitest": "0.29.8"
},
"svelte": "./dist/index.js",
"types": "./dist/index.d.ts",
"type": "module"
}