-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.04 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.04 KB
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
{
"name": "code-tex",
"version": "1.1.0",
"description": "A tiny web component for displaying and sharing code.",
"type": "module",
"main": "dist/code-tex.js",
"module": "dist/code-tex.js",
"exports": {
".": "./dist/code-tex.js"
},
"files": [
"dist"
],
"scripts": {
"dev": "vite",
"build": "vite build",
"prepublishOnly": "npx concurrently \"npm run build\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/auzmartist/code-tex.git"
},
"keywords": [
"code",
"web",
"components",
"highlight.js"
],
"author": "Austin Martin (auz.martin@gmail.com)",
"license": "ISC",
"bugs": {
"url": "https://github.com/auzmartist/code-tex/issues"
},
"homepage": "https://github.com/auzmartist/code-tex#readme",
"dependencies": {
"@auzmartist/hybrids-helpers": "0.2.1",
"hybrids": "^8.1.5",
"highlight.js": "^10.4.1"
},
"devDependencies": {
"typescript": "^4.8.4",
"rollup-plugin-css-hmr": "^0.3.4",
"vite": "^3.1.6",
"vitest": "^0.24.0"
}
}