-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 940 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 940 Bytes
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
{
"name": "@editorjs/core",
"packageManager": "yarn@4.0.1",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "yarn clear && tsc --build tsconfig.build.json",
"dev": "yarn build --watch",
"lint": "eslint ./src",
"lint:ci": "eslint --config ./eslint.config.mjs ./src --max-warnings 0",
"lint:fix": "yarn lint --fix",
"clear": "rm -rf ./dist && rm -rf ./tsconfig.build.tsbuildinfo"
},
"devDependencies": {
"eslint": "^9.9.1",
"eslint-config-codex": "^2.0.2",
"typescript": "^5.5.4"
},
"dependencies": {
"@editorjs/collaboration-manager": "workspace:^",
"@editorjs/dom": "^1.0.0",
"@editorjs/dom-adapters": "workspace:^",
"@editorjs/editorjs": "^2.30.5",
"@editorjs/helpers": "^1.0.0",
"@editorjs/model": "workspace:^",
"@editorjs/sdk": "workspace:^",
"reflect-metadata": "^0.2.2",
"typedi": "^0.10.0"
}
}