-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.38 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.38 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
{
"name": "leafer-x-richText",
"version": "1.0.0",
"description": "Leafer plugin: rich text element with per-character styling (Figma-style, IText-like)",
"type": "module",
"main": "./dist/index.js",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
}
},
"files": [
"dist",
"README.md"
],
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"build:lib": "vite build --config vite.lib.config.ts",
"preview": "vite preview",
"prepublishOnly": "npm run build:lib",
"publish:public": "npm run build:lib && npm publish --registry https://registry.npmjs.org/ --access public"
},
"keywords": [
"leafer",
"richtext",
"rich-text",
"canvas",
"editor",
"itext",
"figma"
],
"repository": {
"type": "git",
"url": "https://github.com/paiDaXing-web/leafer-x-richText.git"
},
"license": "MIT",
"publishConfig": {
"registry": "https://registry.npmjs.org/",
"access": "public"
},
"peerDependencies": {
"@leafer-in/editor": "^2.0.0",
"leafer-ui": "2.0.0"
},
"dependencies": {
"@leafer-in/text-editor": "^2.0.0",
"import": "^0.0.6"
},
"devDependencies": {
"@types/node": "^20.10.0",
"typescript": "^5.3.3",
"vite": "^5.0.0",
"vite-plugin-dts": "^3.9.1"
}
}