-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
73 lines (73 loc) · 2.42 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": "@mh4gf/prosemirror-details",
"version": "1.1.0",
"description": "ProseMirror's open/close details list component",
"type": "module",
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"typings": "dist/esm/index.d.ts",
"exports": {
".": {
"import": "./dist/esm/index.js",
"require": "./dist/cjs/index.js"
}
},
"files": [
"dist"
],
"author": "MH4GF <[email protected]>",
"repository": {
"type": "git",
"url": "git://github.com/mh4gf/prosemirror-details.git"
},
"license": "MIT",
"peerDependencies": {
"prosemirror-model": "^1.18.1",
"prosemirror-schema-basic": "^1.2.0",
"prosemirror-state": "^1.4.1",
"prosemirror-view": "^1.28.2"
},
"devDependencies": {
"@testing-library/dom": "^8.18.1",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/user-event": "^14.4.3",
"@tsconfig/strictest": "^1.0.2",
"@types/jest": "^29.1.1",
"@typescript-eslint/eslint-plugin": "^5.38.1",
"@typescript-eslint/parser": "^5.38.1",
"esbuild": "^0.15.10",
"esbuild-jest": "^0.5.0",
"eslint": "^8.24.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jest-dom": "^4.0.2",
"eslint-plugin-testing-library": "^5.7.0",
"eslint-plugin-unused-imports": "^2.0.0",
"jest": "^29.1.2",
"jest-environment-jsdom": "^29.1.2",
"prettier": "^2.7.1",
"prosemirror-model": "^1.18.1",
"prosemirror-schema-basic": "^1.2.0",
"prosemirror-state": "^1.4.1",
"prosemirror-test-builder": "https://github.com/ProseMirror/prosemirror-test-builder.git#master",
"prosemirror-view": "^1.28.2",
"typescript": "^4.8.4"
},
"scripts": {
"build": "yarn build:esm && yarn build:cjs",
"build:esm": "tsc --module es2015 --target es2015 --outDir dist/esm",
"build:cjs": "tsc --module commonjs --target es5 --outDir dist/cjs",
"test": "jest",
"lint": "eslint --ext=.ts ./src",
"format": "prettier --write --ignore-path .gitignore './**/*.{js,jsx,ts,json,css}'",
"build-prosemirror-test-builder": "set -eux; if [ ! -f ./node_modules/prosemirror-test-builder/dist/index.js ]; then cd ./node_modules/prosemirror-test-builder; yarn install --frozen-lockfile; fi",
"test:prepare": "yarn build-prosemirror-test-builder"
},
"prettier": {
"semi": false,
"singleQuote": true,
"tabWidth": 2,
"trailingComma": "all",
"printWidth": 100
}
}