-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
114 lines (114 loc) · 3.44 KB
/
Copy pathpackage.json
File metadata and controls
114 lines (114 loc) · 3.44 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
112
113
114
{
"name": "@rhapsodic/vuewer",
"version": "1.3.1",
"description": "Vue 3 image viewer composable",
"license": "MIT",
"type": "module",
"author": {
"name": "rhapsodic.dev",
"email": "rhapsodic.dev@gmail.com",
"url": "https://github.com/rhapsodic-dev"
},
"contributors": [
{
"name": "Svyatoslav Fyodorov",
"email": "intelrug@gmail.com",
"url": "https://github.com/intelrug"
},
{
"name": "TrenLok",
"email": "trenlok.dev@gmail.com",
"url": "https://github.com/trenlok"
}
],
"homepage": "https://github.com/rhapsodic-dev/vuewer.git#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/rhapsodic-dev/vuewer.git"
},
"bugs": {
"url": "https://github.com/rhapsodic-dev/vuewer/issues"
},
"keywords": [
"image",
"viewer",
"vue",
"vue3"
],
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
},
"./style.css": "./dist/style.css"
},
"main": "./dist/index.js",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"scripts": {
"dev": "vite --config vite.dev.config.mjs playground --host 0.0.0.0",
"build": "pnpm run build:lib",
"build:lib": "vite build",
"build:playground": "vite build --config vite.dev.config.mjs playground",
"dev:build": "pnpm run build:playground",
"preview:playground": "vite preview --config vite.dev.config.mjs playground --host 0.0.0.0",
"dev:preview": "pnpm run preview:playground",
"lint": "pnpm run lint:scripts && pnpm run lint:styles",
"lint:styles": "stylelint \"**/*.{css,scss,vue}\" --allow-empty-input",
"lint:scripts": "eslint .",
"format": "pnpm run format:scripts && pnpm run format:styles",
"format:scripts": "eslint . --fix",
"format:styles": "stylelint \"**/*.{css,scss,vue}\" --allow-empty-input --fix",
"typecheck": "vue-tsc --noEmit -p tsconfig.json && vue-tsc --noEmit -p playground/tsconfig.json",
"release": "bumpp",
"test": "vitest run --config vite.dev.config.mjs",
"test:watch": "vitest watch --config vite.dev.config.mjs",
"prepare": "pnpm run hooks:install",
"hooks:install": "pnpm exec simple-git-hooks"
},
"files": [
"dist",
"LICENSE",
"README.md"
],
"sideEffects": [
"./dist/style.css"
],
"peerDependencies": {
"vue": "^3.5.39"
},
"dependencies": {
"@vueuse/core": "^14.3.0"
},
"devDependencies": {
"@commitlint/cli": "^21.2.1",
"@commitlint/config-conventional": "^21.2.0",
"@rhapsodic/eslint-config": "^4.0.0",
"@rhapsodic/stylelint-config": "^1.0.1",
"@types/node": "^25.9.5",
"@vitejs/plugin-vue": "^6.0.8",
"bumpp": "^11.1.0",
"eslint": "^10.7.0",
"eslint-plugin-vuejs-accessibility": "^2.5.0",
"globals": "^17.7.0",
"lint-staged": "^17.0.8",
"sass": "^1.101.0",
"simple-git-hooks": "^2.13.1",
"stylelint": "^17.14.0",
"typescript": "~6.0.3",
"vite": "^8.1.4",
"vite-plugin-dts": "^5.0.3",
"vitest": "^4.1.10",
"vue": "^3.5.39",
"vue-tsc": "^3.3.7"
},
"simple-git-hooks": {
"commit-msg": "pnpm exec commitlint --edit",
"pre-commit": "pnpm exec lint-staged"
},
"lint-staged": {
"*.{js,ts,vue}": "eslint --fix",
"*.{css,scss,vue}": "stylelint --allow-empty-input --fix"
},
"packageManager": "pnpm@11.11.0+sha512.4463f65fd80ed80d69bc1d4bf163ee94f605c7380fc318bb5b2ebe15f8cd12d49c51a4d59e951b401e764d3b6ca751cbf51bc50ed7001a6bcb4935e684c34882"
}