-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
95 lines (95 loc) · 2.55 KB
/
package.json
File metadata and controls
95 lines (95 loc) · 2.55 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
93
94
95
{
"name": "tanoshi",
"version": "0.14.4",
"keywords": [
"svelte",
"sveltekit",
"tanoshi",
"design system",
"ui",
"component library",
"component",
"library",
"ui library",
"ui component",
"ui components",
"ui components library",
"ui components library svelte",
"ui components library sveltekit",
"material design",
"flat design",
"flat ui",
"glassmorphism",
"glassmorphism design",
"glassmorphism ui",
"neumorphism",
"neumorphism design",
"neumorphism ui"
],
"description": "Tanoshi is a component library built the atomic way. Create beautiful pages easily with configurable typescript objects. You won't need to write CSS or HTML anymore",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/deozza/tanoshi"
},
"scripts": {
"dev": "vite dev --host",
"build": "vite build",
"preview": "vite preview",
"check": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json",
"check:watch": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json --watch",
"test:coverage": "vitest run --coverage",
"test": "vitest",
"lint": "prettier --plugin-search-dir . --check . && eslint .",
"format": "prettier --plugin-search-dir . --write .",
"story:dev": "histoire dev",
"story:build": "histoire build",
"story:preview": "histoire preview"
},
"type": "module",
"exports": {
"./package.json": "./package.json",
".": {
"types": "./dist/index.d.ts",
"svelte": "./dist/index.js",
"default": "./dist/index.js"
}
},
"index": "./dist/index.d.ts",
"types": "./dist/index.d.ts",
"files": [
"dist",
"!dist/**/*.test.*",
"!dist/**/*.spec.*"
],
"svelte": "./dist/index.js",
"devDependencies": {
"@histoire/plugin-svelte": "^0.16.4",
"@playwright/test": "^1.28.1",
"@sveltejs/adapter-auto": "^2.1.0",
"@sveltejs/kit": "^1.22.0",
"@typescript-eslint/eslint-plugin": "^5.45.0",
"@typescript-eslint/parser": "^5.45.0",
"eslint": "^8.47.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-svelte": "^2.32.2",
"histoire": "^0.16.4",
"prettier": "^3.0.0",
"prettier-plugin-svelte": "^3.0.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"svelte": "^4.2.0",
"svelte-check": "^3.5.0",
"tslib": "^2.6.1",
"typescript": "^5.1.0",
"vite": "^4.4.0",
"vitest": "^0.34.0"
},
"dependencies": {
"iconify-icon": "^1.0.8"
},
"peerDependencies": {
"vite": "^4.4.0",
"svelte": "^4.2.0"
}
}