-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
63 lines (63 loc) · 1.97 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
59
60
61
62
63
{
"name": "bobrilstrap",
"version": "5.1.1",
"description": "Bobril wrapper for bootstrap 5",
"author": "Tomáš Růt",
"license": "MIT",
"bugs": {
"url": "https://github.com/keeema/bobrilstrap/issues"
},
"homepage": "http://keeema.github.io/bobrilstrap",
"repository": "https://github.com/keeema/bobrilstrap.git",
"keywords": [
"bootstrap",
"bobril",
"virtual-dom",
"components"
],
"typescript": {
"main": "index.ts"
},
"bobril": {
"buildOutputDir": "docs",
"example": "example/example.tsx",
"title": "Bobrilstrap 5",
"additionalResourcesDirectory": "example/assets",
"head": "<meta name=\"viewport\" content=\"width=device-width, initial-scale=1, shrink-to-fit=no\"><link rel=\"shortcut icon\" type=\"image/ico\" href=\"favicon.ico\" />",
"compilerOptions": {
"declaration": true,
"noPropertyAccessFromIndexSignature": true,
"noFallthroughCasesInSwitch": true,
"noImplicitReturns": true,
"noUncheckedIndexedAccess": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"removeComments": false,
"sourceMap": true,
"strict": true,
"strictPropertyInitialization": true
}
},
"prettier": {
"printWidth": 140,
"tabWidth": 4
},
"dependencies": {
"@popperjs/core": "^2.10.2",
"@types/bootstrap": "^5.1.6",
"bobril": "^17.13.0",
"bootstrap": "^5.1.3"
},
"devDependencies": {
"@types/node": "^14.17.32",
"@types/prismjs": "^1.16.6",
"@typescript-eslint/eslint-plugin": "^2.30.0",
"@typescript-eslint/parser": "^2.30.0",
"eslint": "^6.8.0",
"eslint-config-bobril": "^1.0.2",
"prettier": "^2.4.1",
"prism-themes": "^1.9.0",
"prismjs": "^1.25.0",
"typescript": "^4.4.4"
}
}