-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
102 lines (102 loc) · 3.08 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
94
95
96
97
98
99
100
101
102
{
"name": "tido",
"version": "4.4.0",
"description": "Text Viewer for Digital Objects (TIDO)",
"productName": "TIDO",
"keywords": [
"openseadragon",
"subugoe",
"TIDO",
"viewer",
"vue",
"tailwindcss",
"primevue"
],
"license": "AGPL-3.0-or-later",
"author": "Göttingen State and University Library - SUB",
"contributors": [
"Noor Amtul <[email protected]>",
"Manikanth Dindigala",
"Mathias Göbel <[email protected]>",
"Orlin Malkja <[email protected]>",
"Paul Pestov <[email protected]>",
"Frank Schneider",
"Michelle Weidling <[email protected]>",
"Nils Windisch"
],
"type": "module",
"main": "dist/tido.js",
"bugs": {
"url": "https://github.com/subugoe/tido/issues"
},
"homepage": "https://subugoe.github.io/tido/",
"repository": {
"type": "git",
"url": "git+https://github.com/subugoe/tido.git"
},
"private": false,
"devDependencies": {
"@vitejs/plugin-vue": "^5.0.4",
"@vueuse/core": "^10.9.0",
"autoprefixer": "^10.4.17",
"cypress": "^13.6.6",
"eslint": "^8.57.0",
"eslint-plugin-vue": "^9.27.0",
"http-server": "^14.1.1",
"ncp": "^2.0.0",
"openseadragon": "^3.1.0",
"pinia": "^2.1.7",
"postcss-html": "^1.7.0",
"primevue": "^3.49.1",
"sass": "^1.71.1",
"standard-version": "^9.5.0",
"start-server-and-test": "^2.0.3",
"stylelint": "^16.7.0",
"stylelint-config-standard": "^36.0.1",
"stylelint-config-standard-scss": "^13.1.0",
"stylelint-config-standard-vue": "^1.0.0",
"stylelint-scss": "^6.4.1",
"tailwindcss": "^3.4.1",
"typescript-eslint": "^7.16.1",
"vite": "^5.2.6",
"vue": "^3.5.13",
"vue-i18n": "^9.2.0-beta.35",
"vuex": "^4.0.1"
},
"browserslist": [
"last 1 version",
"not dead",
"not IE 11",
"> 5%"
],
"engines": {
"node": ">= 20.0.0",
"npm": ">= 6.13.4"
},
"scripts": {
"build": "vite build",
"cypress": "cypress open",
"cypress:headless": "cypress run --headless",
"dev": "vite",
"fix": "npm run fix:vue && npm run fix:js && npm run fix:ts && npm run fix:scss",
"fix:js": "eslint --fix --ext .js src",
"fix:ts": "eslint --fix --ext .js src",
"fix:scss": "stylelint --fix 'src/**/*.{css,scss,vue}'",
"fix:vue": "eslint --fix --ext .vue src",
"lint": "npm run lint:vue && npm run lint:js && npm run lint:scss",
"lint:js": "eslint --ext .js src",
"lint:ts": "eslint --ext .js src",
"lint:scss": "stylelint --fix 'src/**/*.{css,scss,vue}'",
"lint:vue": "eslint --ext=.vue src",
"release": "npm run build && npm publish",
"start:mock-api": "http-server tests/mocks -p 8181 -c-1 --silent --cors",
"start:examples": "http-server examples -p 2222 -c-1 --silent --cors",
"preview": "npm run build && vite preview",
"preview:examples": "npm run build && cp -r dist/ examples/dist/ && npm run start:examples",
"test": "start-server-and-test preview:examples 2222 cypress:headless",
"write-changelog": "standard-version"
},
"files": [
"dist"
]
}