ai-ppt-edit-component 0.0.2
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 +132 -0
- package/es/assets/index.css +1 -0
- package/es/assets/index2.css +1 -0
- package/es/index.mjs +43676 -0
- package/index.css +1 -0
- package/lib/assets/index.css +1 -0
- package/lib/assets/index2.css +1 -0
- package/lib/index.js +58 -0
- package/package.json +104 -0
package/package.json
ADDED
|
@@ -0,0 +1,104 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "ai-ppt-edit-component",
|
|
3
|
+
"version": "0.0.2",
|
|
4
|
+
"keywords": [
|
|
5
|
+
"ai",
|
|
6
|
+
"ppt",
|
|
7
|
+
"editor",
|
|
8
|
+
"vue",
|
|
9
|
+
"components"
|
|
10
|
+
],
|
|
11
|
+
"license": "MIT",
|
|
12
|
+
"sideEffects": [
|
|
13
|
+
"**/*.css",
|
|
14
|
+
"**/*.scss"
|
|
15
|
+
],
|
|
16
|
+
"exports": {
|
|
17
|
+
".": {
|
|
18
|
+
"import": "./es/index.mjs",
|
|
19
|
+
"require": "./lib/index.js"
|
|
20
|
+
},
|
|
21
|
+
"./es": {
|
|
22
|
+
"import": "./es/index.mjs"
|
|
23
|
+
},
|
|
24
|
+
"./lib": {
|
|
25
|
+
"require": "./lib/index.js"
|
|
26
|
+
},
|
|
27
|
+
"./es/*": {
|
|
28
|
+
"import": "./es/*.mjs"
|
|
29
|
+
},
|
|
30
|
+
"./es/*.mjs": {
|
|
31
|
+
"import": "./es/*.mjs"
|
|
32
|
+
},
|
|
33
|
+
"./lib/*.js": {
|
|
34
|
+
"require": "./lib/*.js"
|
|
35
|
+
},
|
|
36
|
+
"./lib/*": {
|
|
37
|
+
"require": "./lib/*.js"
|
|
38
|
+
},
|
|
39
|
+
"./index.css": "./index.css"
|
|
40
|
+
},
|
|
41
|
+
"main": "lib/index.js",
|
|
42
|
+
"import": "./es/index.mjs",
|
|
43
|
+
"module": "lib/index.js",
|
|
44
|
+
"files": [
|
|
45
|
+
"es",
|
|
46
|
+
"lib",
|
|
47
|
+
"index.css",
|
|
48
|
+
"public",
|
|
49
|
+
"README.md"
|
|
50
|
+
],
|
|
51
|
+
"dependencies": {
|
|
52
|
+
"@icon-park/vue-next": "^1.4.2",
|
|
53
|
+
"animate.css": "^4.1.1",
|
|
54
|
+
"axios": "^1.7.9",
|
|
55
|
+
"clipboard": "^2.0.11",
|
|
56
|
+
"crypto-js": "^4.2.0",
|
|
57
|
+
"dexie": "^4.0.11",
|
|
58
|
+
"echarts": "^5.5.1",
|
|
59
|
+
"file-saver": "^2.0.5",
|
|
60
|
+
"hfmath": "^0.0.2",
|
|
61
|
+
"html-to-image": "^1.11.13",
|
|
62
|
+
"lodash": "^4.17.21",
|
|
63
|
+
"mitt": "^3.0.1",
|
|
64
|
+
"nanoid": "^5.0.7",
|
|
65
|
+
"number-precision": "^1.6.0",
|
|
66
|
+
"pptxgenjs": "^3.12.0",
|
|
67
|
+
"pptxtojson": "^1.5.2",
|
|
68
|
+
"prosemirror-commands": "^1.6.0",
|
|
69
|
+
"prosemirror-dropcursor": "^1.8.1",
|
|
70
|
+
"prosemirror-gapcursor": "^1.3.2",
|
|
71
|
+
"prosemirror-history": "^1.3.2",
|
|
72
|
+
"prosemirror-inputrules": "^1.4.0",
|
|
73
|
+
"prosemirror-keymap": "^1.2.2",
|
|
74
|
+
"prosemirror-model": "^1.22.2",
|
|
75
|
+
"prosemirror-schema-basic": "^1.2.3",
|
|
76
|
+
"prosemirror-schema-list": "^1.4.1",
|
|
77
|
+
"prosemirror-state": "^1.4.3",
|
|
78
|
+
"prosemirror-view": "^1.33.9",
|
|
79
|
+
"svg-arc-to-cubic-bezier": "^3.2.0",
|
|
80
|
+
"svg-pathdata": "^7.1.0",
|
|
81
|
+
"tinycolor2": "^1.6.0",
|
|
82
|
+
"tippy.js": "^6.3.7",
|
|
83
|
+
"vuedraggable": "^4.1.0"
|
|
84
|
+
},
|
|
85
|
+
"peerDependencies": {
|
|
86
|
+
"pinia": "^3.0.4",
|
|
87
|
+
"vue": "^3.5.26",
|
|
88
|
+
"vue-router": "^4.6.4"
|
|
89
|
+
},
|
|
90
|
+
"devDependencies": {
|
|
91
|
+
"@vitejs/plugin-vue": "^6.0.3",
|
|
92
|
+
"sass": "^1.93.2",
|
|
93
|
+
"vite": "^7.3.0",
|
|
94
|
+
"vite-plugin-lib-inject-css": "^2.2.2"
|
|
95
|
+
},
|
|
96
|
+
"engines": {
|
|
97
|
+
"node": ">=18"
|
|
98
|
+
},
|
|
99
|
+
"scripts": {
|
|
100
|
+
"build": "vite build && pnpm run postbuild",
|
|
101
|
+
"postbuild": "node -e \"const fs = require('fs'); const path = require('path'); const src = path.join(__dirname, 'es', 'assets', 'index.css'); const dest = path.join(__dirname, 'index.css'); if (fs.existsSync(src)) { fs.copyFileSync(src, dest); console.log('组件库样式文件已复制到根目录'); } else { console.log('警告: 组件库样式文件不存在'); }\"",
|
|
102
|
+
"build:clean": "rimraf lib es"
|
|
103
|
+
}
|
|
104
|
+
}
|