@etrepum/lexical-tailwind-plugin 0.0.26
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +3 -0
- package/dist/index.cjs +1 -0
- package/dist/index.d.cts +10 -0
- package/dist/index.d.cts.map +1 -0
- package/package.json +45 -0
package/README.md
ADDED
package/dist/index.cjs
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
"use strict";const t=require("tailwindcss/plugin"),i={};function e(n=i){return l=>{}}function o(n=i){return{theme:{extend:{animation:{"lexical-cursor-blink":"lexical-cursor-blink 1.1s steps(2, start) infinite"},keyframes:{"lexical-cursor-blink":{to:{visibility:"hidden"}}}}}}}const s=t.withOptions(e,o);module.exports=s;
|
package/dist/index.d.cts
ADDED
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Copyright (c) Meta Platforms, Inc. and affiliates.
|
|
3
|
+
*
|
|
4
|
+
* This source code is licensed under the MIT license found in the
|
|
5
|
+
* LICENSE file in the root directory of this source tree.
|
|
6
|
+
*
|
|
7
|
+
*/
|
|
8
|
+
export interface LexicalTailwindOptions {
|
|
9
|
+
}
|
|
10
|
+
//# sourceMappingURL=index.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA;;;;;;GAMG;AAMH,MAAM,WAAW,sBAAsB;CAEtC"}
|
package/package.json
ADDED
|
@@ -0,0 +1,45 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@etrepum/lexical-tailwind-plugin",
|
|
3
|
+
"description": "[EXPERIMENTAL] Lexical Builder @etrepum/lexical-tailwind-plugin",
|
|
4
|
+
"type": "module",
|
|
5
|
+
"keywords": [
|
|
6
|
+
"lexical",
|
|
7
|
+
"lexical-builder",
|
|
8
|
+
"plug-in",
|
|
9
|
+
"plan"
|
|
10
|
+
],
|
|
11
|
+
"scripts": {
|
|
12
|
+
"build": "tsc --noEmit && vite build",
|
|
13
|
+
"lint": "eslint",
|
|
14
|
+
"dev": "vite"
|
|
15
|
+
},
|
|
16
|
+
"version": "0.0.26",
|
|
17
|
+
"license": "MIT",
|
|
18
|
+
"repository": {
|
|
19
|
+
"type": "git",
|
|
20
|
+
"url": "git+https://github.com/etrepum/lexical-builder.git",
|
|
21
|
+
"directory": "packages/lexical-tailwind-plugin"
|
|
22
|
+
},
|
|
23
|
+
"bugs": {
|
|
24
|
+
"url": "https://github.com/etrepum/lexical-builder/issues"
|
|
25
|
+
},
|
|
26
|
+
"homepage": "https://github.com/etrepum/lexical-builder",
|
|
27
|
+
"peerDependencies": {
|
|
28
|
+
"tailwindcss": ">=3.3.0",
|
|
29
|
+
"@tailwindcss/typography": ">=0.5.0"
|
|
30
|
+
},
|
|
31
|
+
"sideEffects": false,
|
|
32
|
+
"devDependencies": {
|
|
33
|
+
"@repo/eslint-config": "*",
|
|
34
|
+
"eslint": "^8.57.0",
|
|
35
|
+
"tslib": "^2.6.2",
|
|
36
|
+
"typescript": "^5.4.5",
|
|
37
|
+
"vite": "^5.2.11",
|
|
38
|
+
"vite-plugin-dts": "^3.9.1"
|
|
39
|
+
},
|
|
40
|
+
"main": "dist/index.cjs",
|
|
41
|
+
"types": "dist/index.d.cts",
|
|
42
|
+
"files": [
|
|
43
|
+
"dist"
|
|
44
|
+
]
|
|
45
|
+
}
|