-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
111 lines (111 loc) · 2.89 KB
/
package.json
File metadata and controls
111 lines (111 loc) · 2.89 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
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
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
{
"name": "@neovici/cosmoz-image-viewer",
"version": "8.10.0",
"type": "module",
"description": "[](https://travis-ci.org/Neovici/cosmoz-image-viewer)",
"keywords": [
"web-components"
],
"homepage": "https://github.com/Neovici/cosmoz-image-viewer#readme",
"bugs": {
"url": "https://github.com/Neovici/cosmoz-image-viewer/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Neovici/cosmoz-image-viewer.git"
},
"license": "Apache-2.0",
"author": "",
"main": "cosmoz-image-viewer.js",
"directories": {
"test": "test"
},
"files": [
"lib/",
"cosmoz-*.js"
],
"scripts": {
"lint": "eslint --cache .",
"check:duplicates": "check-duplicate-components",
"start": "npm run storybook:start",
"test": "wtr --coverage",
"test:watch": "wtr --watch",
"prepare": "husky",
"prettier": "prettier --write \"**/*.{js,ts,json,css,md}\"",
"prettier:check": "prettier --check \"**/*.{js,ts,json,css,md}\"",
"storybook:start": "storybook dev -p 8000",
"storybook:build": "storybook build",
"storybook:deploy": "storybook-to-ghpages",
"storybook:preview": "npm run storybook:build && http-server ./storybook-static/ --silent"
},
"release": {
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
"@semantic-release/changelog",
"@semantic-release/github",
"@semantic-release/npm",
"@semantic-release/git"
],
"preset": "conventionalcommits"
},
"publishConfig": {
"access": "public"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
],
"rules": {
"body-max-line-length": [
1,
"always",
600
]
}
},
"dependencies": {
"@neovici/cosmoz-autocomplete": "^13.4.1",
"@neovici/cosmoz-i18next": "^3.2.2",
"@neovici/cosmoz-slider": "^5.2.0",
"@neovici/cosmoz-tokens": "^3.3.2",
"@neovici/cosmoz-utils": "^6.9.0",
"@pionjs/pion": "^2.5.2",
"jspdf": "^4.1.0",
"lit-html": "^2.0.0 || ^3.1.4"
},
"peerDependencies": {
"pdfjs-dist": "^3.0.0 || ^4.0.0"
},
"peerDependenciesMeta": {
"pdfjs-dist": {
"optional": true
}
},
"devDependencies": {
"@commitlint/cli": "^20.0.0",
"@commitlint/config-conventional": "^20.0.0",
"@neovici/cfg": "^2.8.0",
"@open-wc/testing": "^4.0.0",
"@rollup/plugin-commonjs": "^29.0.2",
"@semantic-release/changelog": "^6.0.0",
"@semantic-release/git": "^10.0.0",
"@storybook/addon-docs": "^9.1.5",
"@storybook/web-components-vite": "^9.1.5",
"@types/mocha": "^10.0.6",
"@types/node": "^20.12.13",
"esbuild": "^0.24.0",
"eslint": "^9.0.0",
"http-server": "^14.1.1",
"husky": "^9.0.11",
"lint-staged": "^16.2.7",
"pdfjs-dist": "^5.5.207",
"rollup-plugin-esbuild": "^6.1.1",
"semantic-release": "^25.0.0",
"sinon": "^19.0.0",
"storybook": "^9.1.5"
},
"overrides": {
"conventional-changelog-conventionalcommits": ">= 8.0.0"
}
}