-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
55 lines (55 loc) · 1.14 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
{
"name": "@parcility/kennel",
"version": "2.0.5",
"description": "A comprehensive, easy-to-use native depiction renderer.",
"type": "module",
"repository": {
"type": "git",
"url": "git+https://github.com/Parcility/Kennel.git"
},
"keywords": [
"sileo",
"jailbreak",
"depiction",
"typescript"
],
"files": [
"dist"
],
"author": "Zenith",
"license": "MIT",
"bugs": {
"url": "https://github.com/Parcility/Kennel/issues"
},
"homepage": "https://github.com/Parcility/Kennel#readme",
"types": "./dist/index.d.ts",
"main": "./dist/index.umd.cjs",
"module": "./dist/index.js",
"browser": "./dist/index.js",
"exports": {
".": {
"import": "./dist/index.js",
"require": "./dist/index.umd.cjs"
},
"./style.css": "./dist/style.css"
},
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview"
},
"devDependencies": {
"@types/dompurify": "^2.3.4",
"@types/jsdom": "^20.0.0",
"@types/marked": "^4.0.6",
"sass": "^1.54.8",
"typescript": "^4.6.4",
"vite": "^3.0.7",
"vite-plugin-dts": "^1.4.1"
},
"dependencies": {
"dompurify": "^2.4.0",
"jsdom": "^20.0.0",
"marked": "^4.1.0"
}
}