-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
73 lines (73 loc) · 2.1 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
{
"name": "@massifrg/prosemirror-tables-sections",
"version": "0.6.3",
"author": "massifrg <[email protected]>",
"description": "prosemirror-tables derived component to support tables with caption/thead/tbody/tfoot",
"type": "module",
"main": "dist/index.cjs",
"module": "dist/index.js",
"style": "style/tables.css",
"types": "dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.js",
"require": "./dist/index.cjs"
},
"./style/tables.css": "./style/tables.css"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "git://github.com/massifrg/prosemirror-tables-sections.git"
},
"maintainers": [
"M. Farinella <[email protected]>"
],
"dependencies": {
"prosemirror-keymap": "^1.2.1",
"prosemirror-model": "^1.19.0",
"prosemirror-state": "^1.4.2",
"prosemirror-transform": "^1.7.1",
"prosemirror-view": "^1.30.2"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.42.1",
"@typescript-eslint/parser": "^5.42.1",
"builddocs": "^1.0.7",
"eslint": "^8.16.0",
"eslint-plugin-jest": "^26.2.2",
"ist": "^1.1.1",
"prettier": "^2.6.2",
"prosemirror-commands": "^1.5.1",
"prosemirror-example-setup": "^1.2.1",
"prosemirror-menu": "^1.2.1",
"prosemirror-schema-basic": "^1.2.1",
"prosemirror-test-builder": "^1.1.0",
"tsup": "^6.5.0",
"typescript": "^4.0.0",
"vite": "^3.2.4",
"vitest": "^0.25.3"
},
"scripts": {
"dev": "vite demo",
"build_demo": "vite build demo",
"typecheck": "tsc --noEmit",
"test": "vitest",
"build": "tsup",
"watch": "tsup --watch",
"build_readme": "builddocs --name tables-sections --format markdown --main src/README.md src/index.ts > README.md",
"format": "prettier --write .",
"lint": "eslint ./src/ ./test/ && prettier --check ."
},
"bugs": {
"url": "https://github.com/massifrg/prosemirror-tables-sections/issues"
},
"homepage": "https://github.com/massifrg/prosemirror-tables-sections#readme",
"directories": {
"test": "test"
},
"keywords": [
"prosemirror",
"tables"
]
}