-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
110 lines (110 loc) · 2.63 KB
/
Copy pathpackage.json
File metadata and controls
110 lines (110 loc) · 2.63 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
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
{
"name": "@htmlplus/ui",
"version": "1.8.12",
"description": "The Next generation of UI elements.",
"keywords": [
"element",
"element library",
"ui",
"elements",
"ui elements",
"design system",
"custom elements",
"web elements",
"frontend"
],
"homepage": "https://htmlplus.io",
"bugs": {
"url": "https://github.com/htmlplus/ui/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/htmlplus/ui.git"
},
"funding": [
{
"type": "github",
"url": "https://github.com/sponsors/htmlplus"
},
{
"type": "opencollective",
"url": "https://opencollective.com/htmlplus"
}
],
"license": "MIT",
"author": "Masood Abdolian <m.abdolian@gmail.com>",
"type": "module",
"exports": {
".": {
"types": "./dist/types/elements/index.d.ts",
"import": "./dist/elements/index.js"
},
"./*": {
"types": "./dist/types/elements/*/*.d.ts",
"import": "./dist/elements/*"
},
"./config.js": {
"types": "./dist/types/config/index.d.ts",
"import": "./dist/core/config.js"
},
"./json/*": "./dist/json/*",
"./package.json": "./package.json"
},
"main": "./dist/elements/index.js",
"types": "./dist/types/elements/index.d.ts",
"files": [
"./dist/*",
"./package.json",
"./README.md"
],
"scripts": {
"build": "npm run clean && vite build",
"clean": "rimraf .cache dist",
"dev": "vite",
"dev:examples": "vite --open examples/index.html",
"lint": "biome check --write",
"prepare": "husky",
"test:open": "cypress open",
"test:run": "cypress run",
"type-check": "tsc --noEmit"
},
"dependencies": {
"@htmlplus/element": "^4.0.7"
},
"devDependencies": {
"@biomejs/biome": "2.5.4",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/commit-analyzer": "^13.0.1",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^12.0.9",
"@semantic-release/npm": "^13.1.5",
"@semantic-release/release-notes-generator": "^14.1.1",
"@types/prismjs": "^1.26.6",
"conventional-changelog-conventionalcommits": "^10.2.1",
"cypress": "^15.18.1",
"cypress-file-upload": "^5.0.8",
"cypress-real-events": "^1.15.0",
"glob": "^13.0.6",
"husky": "^9.1.7",
"lint-staged": "^16.4.0",
"rimraf": "^6.1.3",
"rollup-plugin-peer-deps-external": "^2.2.4",
"sass": "^1.91.0",
"semantic-release": "^25.0.7",
"typescript": "^6.0.3",
"vite": "^7.3.6",
"vite-plugin-dts": "^4.5.4"
},
"peerDependencies": {
"@faker-js/faker": "^10.1.0",
"@floating-ui/dom": "^1.5.3",
"cropperjs": "^1.6.1",
"embla-carousel": "^8.6.0",
"prismjs": "^1.30.0",
"signature_pad": "^5.1.3"
},
"engines": {
"node": ">= 20.10.0"
},
"web-types": "./dist/json/web-types.json"
}