-
Notifications
You must be signed in to change notification settings - Fork 14
/
package.json
86 lines (86 loc) · 2.78 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
83
84
85
86
{
"name": "prosemirror-docx",
"version": "0.2.0",
"description": "Export from a prosemirror document to Microsoft word",
"author": "Rowan Cockett <[email protected]>",
"license": "MIT",
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"types": "dist/types/index.d.ts",
"files": [
"dist"
],
"keywords": [
"prosemirror",
"docx",
"word",
"writing",
"export"
],
"publishConfig": {
"access": "public"
},
"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": "rimraf dist",
"build:cjs": "tsc --project ./src/tsconfig.json",
"build:esm": "tsc --project ./src/tsconfig.json --module ES2020 --outDir ./dist/esm",
"declarations": "tsc --project ./src/tsconfig.json --declaration --emitDeclarationOnly --outDir dist/types",
"build": "npm-run-all -l clean -p build:cjs build:esm declarations",
"build:watch": "tsc -w -p .",
"prepublishOnly": "yarn build",
"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": "yarn build && yarn changeset publish"
},
"dependencies": {
"buffer-image-size": "^0.6.4",
"docx": "^8.5.0",
"prosemirror-model": "^1.18.1"
},
"devDependencies": {
"@babel/plugin-proposal-optional-chaining": "^7.18.6",
"@changesets/cli": "^2.27.7",
"@curvenote/schema": "0.12.16",
"@types/jest": "^28.1.3",
"@types/markdown-it": "^12.2.3",
"@typescript-eslint/eslint-plugin": "^5.30.0",
"@typescript-eslint/parser": "^5.30.0",
"date-fns": "^2.28.0",
"eslint": "^8.18.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-config-prettier": "^8.5.0",
"eslint-config-react-app": "^7.0.1",
"eslint-import-resolver-typescript": "^3.1.1",
"eslint-plugin-flowtype": "^8.0.3",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jest": "^26.5.3",
"eslint-plugin-json": "^3.1.0",
"eslint-plugin-jsx-a11y": "^6.6.0",
"eslint-plugin-no-only-tests": "^2.6.0",
"eslint-plugin-no-skip-tests": "^1.1.0",
"eslint-plugin-prettier": "^4.1.0",
"eslint-plugin-react": "^7.30.1",
"jest": "^28.1.1",
"npm-run-all": "^4.1.5",
"prettier": "^2.7.1",
"prosemirror-schema-basic": "^1.2.0",
"prosemirror-test-builder": "^1.1.0",
"rimraf": "^3.0.2",
"ts-jest": "^28.0.5",
"typescript": "^4.7.4"
}
}