-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.59 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.59 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
{
"name": "@thundrex/web-components",
"version": "1.0.0",
"description": "thundrex — A clean, accessible design system and web component library built with Lit, with Tailwind CSS preset",
"type": "module",
"main": "./dist-lib/index.js",
"module": "./dist-lib/index.js",
"types": "./dist-lib/index.d.ts",
"exports": {
".": {
"import": "./dist-lib/index.js",
"types": "./dist-lib/index.d.ts"
},
"./tailwind-preset": "./tailwind-preset.js"
},
"files": [
"dist-lib",
"tailwind-preset.js",
"README.md",
"LICENSE"
],
"scripts": {
"dev": "vite",
"build:lib": "tsc && vite build --config vite.lib.config.ts",
"docs:dev": "vitepress dev docs",
"docs:build": "vitepress build docs",
"docs:preview": "vitepress preview docs",
"generate": "node scripts/generate-component.mjs",
"release:patch": "npm version patch && npm run build:lib",
"release:minor": "npm version minor && npm run build:lib",
"release:major": "npm version major && npm run build:lib",
"prepublishOnly": "npm run build:lib"
},
"keywords": [
"web-components",
"lit",
"design-system",
"tailwind",
"accessible",
"thundrex"
],
"repository": {
"type": "git",
"url": "https://github.com/thundrex/web-components.git"
},
"homepage": "https://thundrex.github.io/web-components/",
"bugs": {
"url": "https://github.com/thundrex/web-components/issues"
},
"license": "MIT",
"dependencies": {
"lit": "^3.2.0"
},
"devDependencies": {
"typescript": "^5.7.0",
"vite": "^6.2.0",
"vitepress": "^1.6.4"
}
}