Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

prosemirror-tables

Package Overview
Dependencies
Maintainers
6
Versions
68
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

prosemirror-tables - npm Package Compare versions

Comparing version 1.2.5 to 1.3.0-beta.0

api-extractor.json

28

.eslintrc.json
{
"extends": ["eslint:recommended"],
"plugins": ["jest"],
"env": {
"browser": true,
"jest/globals": true
},
"parserOptions": {
"sourceType": "module",
"ecmaVersion": 2017
}
"extends": ["eslint:recommended", "plugin:@typescript-eslint/recommended"],
"parser": "@typescript-eslint/parser",
"plugins": ["@typescript-eslint"],
"root": true,
"overrides": [
{
"files": ["*.ts"],
"rules": {
"@typescript-eslint/no-explicit-any": 0
}
},
{
"files": ["test/typescript/prosemirror-tables.ts"],
"rules": {
"@typescript-eslint/no-unused-vars": 0
}
}
]
}
{
"node-option": ["experimental-specifier-resolution=node"]
"node-option": [
"experimental-specifier-resolution=node",
"loader=ts-node/esm"
]
}

@@ -24,3 +24,3 @@ import { EditorView } from 'prosemirror-view';

deleteTable,
} from './src/commands';
} from './src';
import { tableEditing, columnResizing, tableNodes, fixTables } from './src';

@@ -27,0 +27,0 @@

{
"name": "prosemirror-tables",
"version": "1.2.5",
"version": "1.3.0-beta.0",
"description": "ProseMirror's rowspan/colspan tables component",

@@ -9,3 +9,3 @@ "type": "module",

"style": "style/tables.css",
"typings": "./index.d.ts",
"types": "dist/index.d.ts",
"exports": {

@@ -41,4 +41,7 @@ ".": {

"devDependencies": {
"@types/prosemirror-model": "^1.7.0",
"@types/prosemirror-state": "^1.2.0",
"@microsoft/api-extractor": "^7.33.6",
"@rollup/plugin-typescript": "^9.0.2",
"@types/mocha": "^10.0.0",
"@typescript-eslint/eslint-plugin": "^5.42.1",
"@typescript-eslint/parser": "^5.42.1",
"builddocs": "^1.0.3",

@@ -55,5 +58,5 @@ "eslint": "^8.16.0",

"prosemirror-test-builder": "^1.0.2",
"rollup": "^2.74.1",
"rollup-plugin-commonjs": "^10.1.0",
"rollup": "^3.3.0",
"rollup-plugin-node-resolve": "^5.2.0",
"ts-node": "^10.9.1",
"typescript": "^4.0.0"

@@ -63,12 +66,11 @@ },

"typecheck": "tsc --noEmit",
"test": "mocha test/test-*.js",
"build_demo": "rollup -c rollup.demo.config.js",
"watch_demo": "rollup -w -c rollup.demo.config.js",
"build": "rollup -c",
"watch": "rollup -w -c",
"prepare": "yarn build",
"test": "mocha test/test-*.ts",
"build_demo": "rollup --configPlugin @rollup/plugin-typescript --config rollup.demo.config.ts",
"watch_demo": "rollup --configPlugin @rollup/plugin-typescript --config rollup.demo.config.ts --watch ",
"build": "rollup --configPlugin @rollup/plugin-typescript --config && api-extractor run",
"watch": "rollup --configPlugin @rollup/plugin-typescript --config --watch",
"build_readme": "builddocs --name tables --format markdown --main src/README.md src/*.js > README.md",
"format": "prettier --write .",
"lint": "eslint ./src/ ./test/ --ext .js,.jsx && prettier --check ."
"lint": "eslint ./src/ ./test/ && prettier --check ."
}
}
{
"compilerOptions": {
"module": "commonjs",
"module": "esnext",
"target": "es2020",
"lib": ["es6", "dom"],
"baseUrl": "../",
"baseUrl": "src",
"typeRoots": ["../"],
"types": [],
"strict": true,
"noEmit": true
"strict": false,
"outDir": "dist/",
"sourceMap": true,
"declaration": true,
"declarationMap": true,
"declarationDir": ".",
"noEmitOnError": false,
"moduleResolution": "node"
},
"files": ["index.d.ts", "test/typescript/prosemirror-tables.ts"]
"files": ["test/typescript/prosemirror-tables.ts"]
}

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is too big to display

Sorry, the diff of this file is not supported yet

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc