forked from curvenote/prosemirror-docx
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
82 lines (82 loc) · 2.6 KB
/
package.json
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
75
76
77
78
79
80
81
82
{
"name": "@ep/prosemirror-docx",
"version": "0.0.15",
"description": "Export from a prosemirror document to Microsoft word",
"author": "Rowan Cockett <[email protected]>",
"license": "MIT",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"keywords": [
"prosemirror",
"docx",
"word",
"writing",
"export"
],
"repository": {
"type": "git",
"url": "git+https://github.com/curvenote/prosemirror-docx.git"
},
"bugs": {
"url": "https://github.com/curvenote/prosemirror-docx/issues"
},
"homepage": "https://github.com/curvenote/prosemirror-docx",
"scripts": {
"clean": "rm -rf dist",
"build": "yarn run clean && tsc -p .;rm -rf dist/test; mv dist/src/* dist; rmdir dist/src;",
"build:umd": "webpack --config webpack.config.js",
"build:watch": "tsc -w -p .",
"test": "jest",
"test:watch": "jest --watchAll",
"test:clear": "jest --clearCache",
"lint": "eslint \"src/**/*.ts\" -c .eslintrc.json",
"lint:format": "prettier --check \"src/**/*.ts\"",
"lint:format:fix": "prettier --write \"src/**/*.ts\"",
"release": "npm run build:umd && npm publish"
},
"dependencies": {
"buffer-image-size": "^0.6.4",
"docx": "^7.3.0",
"prosemirror-model": "^1.15.0"
},
"devDependencies": {
"@babel/plugin-proposal-optional-chaining": "^7.14.5",
"@curvenote/schema": "^0.10.0",
"@types/jest": "^26.0.24",
"@types/markdown-it": "^12.0.2",
"@types/mocha": "^8.2.3",
"@types/prosemirror-model": "^1.13.2",
"@types/prosemirror-test-builder": "^1.0.2",
"@typescript-eslint/eslint-plugin": "^4.33.0",
"@typescript-eslint/parser": "^4.33.0",
"date-fns": "^2.25.0",
"eslint": "^7.32.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-config-airbnb-typescript": "^12.3.1",
"eslint-config-prettier": "^8.3.0",
"eslint-config-react-app": "^6.0.0",
"eslint-import-resolver-typescript": "^2.5.0",
"eslint-plugin-flowtype": "^5.10.0",
"eslint-plugin-import": "^2.25.2",
"eslint-plugin-jest": "^24.7.0",
"eslint-plugin-json": "^3.1.0",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-no-only-tests": "^2.6.0",
"eslint-plugin-no-skip-tests": "^1.1.0",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-react": "^7.26.1",
"jest": "^26.6.3",
"prettier": "^2.4.1",
"prosemirror-schema-basic": "^1.1.2",
"prosemirror-test-builder": "^1.0.5",
"ts-jest": "^26.5.6",
"ts-loader": "^9.2.6",
"typescript": "^4.5.5",
"webpack": "^5.67.0",
"webpack-cli": "^4.9.2"
}
}