prosemirror-tables
Advanced tools
Comparing version 1.2.5 to 1.3.0-beta.0
{ | ||
"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
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
No v1
QualityPackage is not semver >=1. This means it is not stable and does not support ^ ranges.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
Major refactor
Supply chain riskPackage has recently undergone a major refactor. It may be unstable or indicate significant internal changes. Use caution when updating to versions that include significant changes.
Found 1 instance in 1 package
58
9360
0
555906
20
2