-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
111 lines (111 loc) · 2.79 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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
{
"name": "@htmlplus/ui",
"version": "1.6.0",
"license": "MIT",
"author": "Masood Abdolian <m.abdolian@gmail.com>",
"description": "The Next generation of UI elements.",
"type": "module",
"main": "./dist/elements/index.js",
"types": "./dist/types/elements/index.d.ts",
"web-types": "./dist/json/web-types.json",
"scripts": {
"build": "npm run clean && vite build",
"clean": "rimraf .cache dist",
"dev": "vite",
"dev:examples": "vite --open examples/index.html",
"format": "prettier --write .",
"test:open": "cypress open",
"test:run": "cypress run"
},
"exports": {
".": {
"import": "./dist/elements/index.js",
"types": "./dist/types/elements/index.d.ts"
},
"./*": {
"import": "./dist/elements/*",
"types": "./dist/types/elements/*/*.d.ts"
},
"./config.js": {
"import": "./dist/core/config.js",
"types": "./dist/types/config/index.d.ts"
},
"./json/*": {
"import": "./dist/json/*",
"types": null
},
"./package.json": {
"import": "./package.json",
"types": null
}
},
"files": [
"./dist/*",
"./package.json",
"./README.md"
],
"funding": [
{
"type": "github",
"url": "https://github.com/sponsors/htmlplus"
},
{
"type": "opencollective",
"url": "https://opencollective.com/htmlplus"
}
],
"engines": {
"node": ">= 20.10.0"
},
"keywords": [
"element",
"element library",
"ui",
"elements",
"ui elements",
"design system",
"custom elements",
"web elements",
"frontend"
],
"repository": {
"type": "git",
"url": "git+https://github.com/htmlplus/ui.git"
},
"bugs": {
"url": "https://github.com/htmlplus/ui/issues"
},
"homepage": "https://htmlplus.io",
"dependencies": {
"@htmlplus/element": "^3.1.4"
},
"devDependencies": {
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/commit-analyzer": "^13.0.0",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^11.0.0",
"@semantic-release/npm": "^12.0.1",
"@semantic-release/release-notes-generator": "^14.0.1",
"@trivago/prettier-plugin-sort-imports": "^4.3.0",
"conventional-changelog-conventionalcommits": "^8.0.0",
"cypress": "^13.15.1",
"cypress-file-upload": "^5.0.8",
"cypress-real-events": "^1.13.0",
"glob": "^11.0.0",
"prettier": "^3.3.3",
"rimraf": "^6.0.1",
"rollup-plugin-peer-deps-external": "^2.2.4",
"sass-embedded": "^1.80.4",
"semantic-release": "^24.2.0",
"signature_pad": "^5.0.4",
"typescript": "^5.6.3",
"vite": "^5.4.10",
"vite-plugin-dts": "^4.3.0"
},
"peerDependencies": {
"@faker-js/faker": "^8.2.0",
"@floating-ui/dom": "^1.5.3",
"cropperjs": "^1.6.1",
"prismjs": "^1.29.0"
}
}