-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
58 lines (58 loc) · 1.56 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
{
"name": "editorjs-code-highlight",
"version": "1.2.0",
"description": "Code Block for EditorJS",
"main": "dist/bundle.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "webpack --mode=production",
"dev": "webpack serve --mode=development",
"lint": "eslint \"src/**/*.ts\"",
"lint:fix": "npm run lint -- --fix",
"format": "prettier --write \"src/**/*.ts\" \"test/**/*.ts\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/bquangDinh/editorjs-code.git"
},
"keywords": [
"codex editor",
"tool",
"code",
"highlight",
"editor.js",
"editorjs"
],
"author": {
"name": "Quang Dinh Bui",
"email": "[email protected]"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/bquangDinh/editorjs-code/issues"
},
"homepage": "https://github.com/bquangDinh/editorjs-code#readme",
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.48.0",
"@typescript-eslint/parser": "^5.48.0",
"css-loader": "^6.7.3",
"eslint": "^7.0.0",
"eslint-config-prettier": "^8.6.0",
"eslint-loader": "^4.0.2",
"eslint-plugin-prettier": "^4.2.1",
"html-webpack-plugin": "^5.5.0",
"prettier": "^2.8.1",
"sass": "^1.57.1",
"sass-loader": "^13.2.0",
"style-loader": "^3.3.1",
"ts-loader": "^9.4.2",
"typescript": "^4.9.4",
"webpack": "^5.75.0",
"webpack-cli": "^5.0.1",
"webpack-dev-server": "^4.11.1"
},
"dependencies": {
"@editorjs/editorjs": "^2.26.4",
"highlight.js": "^11.7.0"
}
}