-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
101 lines (101 loc) · 2.71 KB
/
package.json
File metadata and controls
101 lines (101 loc) · 2.71 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
{
"name": "@htmlplus/element",
"version": "3.4.9",
"description": "A powerful library for building scalable, reusable, fast, tastable and lightweight design system for any web technologies. Powered by Web Component.",
"keywords": [
"components",
"custom elements",
"design systems",
"web components"
],
"homepage": "https://github.com/htmlplus/element#readme",
"bugs": {
"url": "https://github.com/htmlplus/element/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/htmlplus/element.git"
},
"funding": [],
"license": "MIT",
"author": "Masood Abdolian <m.abdolian@gmail.com>",
"sideEffects": false,
"type": "module",
"exports": {
".": {
"types": "./dist/client.d.ts",
"import": "./dist/client.js"
},
"./bundlers.js": {
"types": "./dist/bundlers.d.ts",
"import": "./dist/bundlers.js"
},
"./transformer.js": {
"types": "./dist/transformer.d.ts",
"import": "./dist/transformer.js"
},
"./jsx-runtime": "./dist/jsx-runtime.d.ts"
},
"main": "./dist/client.js",
"types": "./dist/client.d.ts",
"files": [
"./dist/*",
"./package.json",
"./README.md"
],
"scripts": {
"build": "npm run clean && rollup -c",
"build:watch": "npm run clean && rollup -c -w",
"clean": "rimraf dist",
"dev": "vite --force development",
"lint": "biome check --write",
"prepare": "husky",
"test": "vitest --config tests/vitest.config.ts",
"type-check": "tsc --noEmit"
},
"dependencies": {
"@babel/generator": "^7.28.3",
"@babel/parser": "^7.28.3",
"@babel/template": "^7.27.2",
"@babel/traverse": "^7.28.3",
"@babel/types": "^7.28.2",
"@types/node": "^24.3.0",
"@types/react": "^19.1.11",
"change-case": "^5.4.4",
"fs-extra": "^11.3.1",
"glob": "^11.0.3",
"ora": "^8.2.0",
"typescript": "^5.9.2"
},
"devDependencies": {
"@biomejs/biome": "2.2.2",
"@rollup/plugin-alias": "^5.1.1",
"@rollup/plugin-typescript": "^12.1.4",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/commit-analyzer": "^13.0.1",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^11.0.4",
"@semantic-release/npm": "^13.1.3",
"@semantic-release/release-notes-generator": "^14.0.3",
"@testing-library/dom": "^10.4.1",
"@testing-library/jest-dom": "^6.9.1",
"@vitest/browser-playwright": "^4.0.16",
"conventional-changelog-conventionalcommits": "^9.1.0",
"cpy": "^12.0.1",
"husky": "^9.1.7",
"lint-staged": "^16.1.5",
"playwright": "^1.57.0",
"rimraf": "^6.0.1",
"rollup": "^4.48.1",
"rollup-plugin-copy": "^3.5.0",
"rollup-plugin-dts": "^6.2.3",
"rollup-plugin-node-externals": "^8.1.0",
"semantic-release": "^25.0.2",
"tslib": "^2.8.1",
"vite": "^7.1.3",
"vitest": "^4.0.16"
},
"engines": {
"node": ">= 20.10.0"
}
}