-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
37 lines (37 loc) · 830 Bytes
/
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
{
"name": "notion-syntax-highlighter",
"version": "0.0.0",
"author": "Kuba Serwatka",
"description": "",
"type": "module",
"license": "MIT",
"keywords": [
"chrome-extension",
"vanilla",
"vite",
"create-chrome-ext"
],
"engines": {
"node": ">=14.18.0"
},
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview",
"fmt": "prettier --write '**/*.{ts,json,css,scss,md}'"
},
"devDependencies": {
"@crxjs/vite-plugin": "^2.0.0-beta.25",
"@types/chrome": "^0.0.235",
"@types/prismjs": "^1.26.0",
"patch-package": "^8.0.0",
"prettier": "^2.7.1",
"typescript": "^4.7.4",
"vite": "^5.4.10"
},
"dependencies": {
"highlight.js": "^11.10.0",
"highlightjs-solidity": "^2.0.6"
},
"postinstall": "patch-package"
}