Skip to content

Commit

Permalink
feat(element): add universal jsx runtime
Browse files Browse the repository at this point in the history
  • Loading branch information
shigma committed May 14, 2024
1 parent af8a19a commit 566e078
Show file tree
Hide file tree
Showing 4 changed files with 668 additions and 0 deletions.
52 changes: 52 additions & 0 deletions packages/element/package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,52 @@
{
"name": "@cordisjs/element",
"description": "Element Manipulation",
"version": "0.1.0",
"type": "module",
"exports": {
".": {
"types": "./lib/index.d.ts",
"import": "./lib/index.js",
"require": "./lib/index.cjs"
},
"./jsx-runtime": {
"types": "./lib/index.d.ts",
"import": "./lib/index.js",
"require": "./lib/index.cjs"
},
"./jsx-dev-runtime": {
"types": "./lib/index.d.ts",
"import": "./lib/index.js",
"require": "./lib/index.cjs"
},
"./src/*": "./src/*",
"./package.json": "./package.json"
},
"files": [
"lib"
],
"author": "Shigma <[email protected]>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/cordiverse/webui.git",
"directory": "packages/element"
},
"bugs": {
"url": "https://github.com/cordiverse/webui/issues"
},
"keywords": [
"cordis",
"element",
"segment",
"component",
"message",
"utilities"
],
"devDependencies": {
"chai-shape": "^1.0.0"
},
"dependencies": {
"cosmokit": "^1.6.2"
}
}
Loading

0 comments on commit 566e078

Please sign in to comment.