-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
93 lines (93 loc) · 3 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
{
"name": "boot-cell",
"version": "2.0.0-beta.28",
"license": "LGPL-3.0",
"author": "[email protected]",
"description": "Web Components UI library based on WebCell v3, BootStrap v5, BootStrap Icon v1 & FontAwesome v6",
"keywords": [
"web",
"component",
"ui",
"webcell",
"bootstrap"
],
"homepage": "https://bootstrap.web-cell.dev/",
"repository": {
"type": "git",
"url": "git+https://github.com/EasyWebApp/BootCell.git"
},
"bugs": {
"url": "https://github.com/EasyWebApp/BootCell/issues"
},
"source": "source/index.ts",
"types": "dist/index.d.ts",
"main": "dist/index.js",
"module": "dist/index.esm.js",
"dependencies": {
"@swc/helpers": "^0.5.11",
"classnames": "^2.5.1",
"dom-renderer": "^2.1.8",
"mobx": "^6.12.4",
"regenerator-runtime": "^0.14.1",
"web-cell": "^3.0.0-rc.16",
"web-utility": "^4.4.0"
},
"peerDependencies": {
"@fortawesome/fontawesome-free": "^6",
"bootstrap": "^5",
"bootstrap-icons": "^1",
"dialog-polyfill": "^0.5",
"iterable-observer": "^1",
"share-api-polyfill": "^1"
},
"devDependencies": {
"@jest/types": "^29.6.3",
"@parcel/config-default": "^2.12.0",
"@parcel/packager-ts": "~2.12.0",
"@parcel/transformer-less": "~2.12.0",
"@parcel/transformer-typescript-tsc": "^2.12.0",
"@parcel/transformer-typescript-types": "~2.12.0",
"@peculiar/webcrypto": "^1.5.0",
"@tech_query/snabbdom-looks-like": "^2.0.1",
"@types/jest": "^29.5.12",
"@types/resize-observer-browser": "^0.1.11",
"@types/turndown": "^5.0.4",
"cross-env": "^7.0.3",
"element-internals-polyfill": "^1.3.11",
"husky": "^9.0.11",
"identity-obj-proxy": "^3.0.0",
"iterable-observer": "^1.0.1",
"jest": "^29.7.0",
"less": "^4.2.0",
"lint-staged": "^15.2.7",
"markdown-area-element": "^0.2.3",
"open-cli": "^8.0.0",
"parcel": "~2.12.0",
"prettier": "^3.3.2",
"ts-jest": "^29.1.5",
"ts-node": "^10.9.2",
"typedoc": "^0.25.13",
"typedoc-plugin-mdn-links": "^3.1.30",
"typescript": "~5.4.5"
},
"scripts": {
"prepare": "husky",
"lint": "lint-staged",
"test": "lint-staged",
"start": "cd test/ && parcel index.html --open",
"pack-dist": "rm -rf dist/ && parcel build source/index.ts",
"pack-docs": "rm -rf docs/ && typedoc source/",
"build": "npm run pack-dist && npm run pack-docs",
"help": "npm run pack-docs && open-cli docs/index.html",
"prepublishOnly": "npm test && npm run build"
},
"lint-staged": {
"*.{html,md,less,json,yml,js,ts,tsx}": "prettier --write"
},
"browserslist": "> 0.5%, last 2 versions, not dead",
"targets": {
"main": {
"optimize": true
}
}
}