-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 1.91 KB
/
package.json
File metadata and controls
74 lines (74 loc) · 1.91 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
{
"name": "plate-docx-deserializer",
"version": "1.3.0",
"type": "module",
"description": "A DOCX to Slate.js converter written in Gleam, compiled to JavaScript",
"main": "./dist/plate-docx-deserializer.js",
"module": "./dist/plate-docx-deserializer.js",
"types": "./build/dev/javascript/slate_docx/slate_docx.d.ts",
"exports": {
".": {
"import": "./dist/plate-docx-deserializer.js",
"types": "./build/dev/javascript/slate_docx/slate_docx.d.ts"
}
},
"files": [
"dist/",
"build/dev/javascript/slate_docx/",
"README.md",
"CHANGELOG.md"
],
"scripts": {
"dev": "vite",
"build": "gleam build && vite build",
"preview": "vite preview",
"gleam:build": "gleam build",
"gleam:test": "gleam test",
"prepublishOnly": "pnpm build",
"release": "release-it",
"release:patch": "release-it patch",
"release:minor": "release-it minor",
"release:major": "release-it major",
"release:dry": "release-it --dry-run"
},
"keywords": [
"docx",
"slate",
"slatejs",
"converter",
"gleam",
"document",
"word",
"parser"
],
"author": "Your Name <your.email@example.com>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/yourusername/plate-docx-deserializer.git"
},
"homepage": "https://github.com/yourusername/plate-docx-deserializer#readme",
"bugs": {
"url": "https://github.com/yourusername/plate-docx-deserializer/issues"
},
"engines": {
"node": ">=16.0.0"
},
"peerDependencies": {
"slate": "^0.100.0"
},
"dependencies": {
"@zip.js/zip.js": "^2.7.72"
},
"devDependencies": {
"@release-it/conventional-changelog": "^10.0.1",
"@vitejs/plugin-react": "^4.2.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"release-it": "^19.0.4",
"slate": "^0.103.0",
"slate-history": "^0.100.0",
"slate-react": "^0.107.0",
"vite": "^5.0.0"
}
}