-
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.68 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.68 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": "typography-controller",
"version": "1.2.1",
"description": "A framework-agnostic Web Component that provides a beautiful typography control panel with sliders for font size, letter spacing, word spacing, line height, contrast, and font family.",
"author": "Achuth Kamath",
"license": "MIT",
"type": "module",
"main": "dist/web/typography-controller.js",
"module": "dist/web/typography-controller.js",
"source": "src/typography-controller.js",
"exports": {
".": "./dist/web/typography-controller.js",
"./react": "./dist/react/react-wrapper.js"
},
"files": [
"dist",
"src",
"README.md",
"LICENSE"
],
"scripts": {
"dev": "vite",
"build": "vite build && vite build --config react.vite.config.js",
"preview": "vite preview"
},
"keywords": [
"web-components",
"custom-elements",
"typography",
"ui",
"ui-library",
"accessibility",
"design-system",
"frontend",
"javascript"
],
"homepage": "https://github.com/achuthkamath91/Typography-Controller",
"repository": {
"type": "git",
"url": "https://github.com/achuthkamath91/Typography-Controller.git"
},
"bugs": {
"url": "https://github.com/achuthkamath91/Typography-Controller/issues"
},
"devDependencies": {
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/commit-analyzer": "^13.0.1",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^12.0.3",
"@semantic-release/npm": "^13.1.3",
"@semantic-release/release-notes-generator": "^14.1.0",
"@vitejs/plugin-react": "^5.1.2",
"semantic-release": "^25.0.3",
"vite": "^7.3.1"
},
"dependencies": {
"user": "^0.0.0"
}
}