-
Notifications
You must be signed in to change notification settings - Fork 28
/
Copy pathpackage.json
71 lines (71 loc) · 2.27 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
{
"name": "tify",
"version": "0.31.0",
"description": "A slim and mobile-friendly IIIF document viewer",
"homepage": "https://tify.rocks/",
"repository": {
"type:": "git",
"url": "https://github.com/tify-iiif-viewer/tify"
},
"bugs": {
"url": "https://github.com/tify-iiif-viewer/tify/issues"
},
"keywords": [
"iiif",
"viewer",
":)"
],
"license": "AGPL-3.0",
"main": "dist/tify.js",
"type": "module",
"scripts": {
"build": "vite build",
"dev": "vite",
"lint": "eslint . --ext .vue,.js,.jsx,.cjs,.mjs --fix --ignore-path .gitignore",
"mock-api": "node -e 'import(`./tests/iiif-api/server.js`).then(server => server.default.start())'",
"postinstall": "node build/create-icons.js",
"preversion": "npm install-clean && npm run test:unit && npm run build && npm run test:e2e",
"preview": "vite preview",
"test:e2e": "start-server-and-test preview http://localhost:4173 'cypress run --e2e'",
"test:e2e:dev": "start-server-and-test 'vite dev --port 4173' http://localhost:4173 'cypress open --e2e'",
"test:i18n": "node build/test-translations.js",
"test:i18n:fix": "node build/test-translations.js --add --remove --sort",
"test:unit": "vitest run",
"version": "git add dist"
},
"devDependencies": {
"@iiif/parser": "^2.1.7",
"@mdi/js": "^7.4.47",
"@rushstack/eslint-patch": "^1.10.5",
"@vitejs/plugin-vue": "^5.2.1",
"@vitest/eslint-plugin": "^1.1.28",
"@vue/eslint-config-airbnb": "^8.0.0",
"@vue/test-utils": "^2.4.6",
"chalk": "^5.4.1",
"click-outside-vue3": "^4.0.1",
"cypress": "^14.0.3",
"diff": "^7.0.0",
"dotenv": "^16.4.7",
"eslint": "^8.57.1",
"eslint-import-resolver-typescript": "^3.7.0",
"eslint-plugin-cypress": "^3.6.0",
"eslint-plugin-vue": "^9.32.0",
"jsdom": "^26.0.0",
"openseadragon": "^5.0.1",
"start-server-and-test": "^2.0.10",
"striptags": "^3.2.0",
"unplugin-vue-components": "^28.0.0",
"vite": "^6.1.0",
"vite-plugin-banner": "^0.8.0",
"vite-plugin-eslint": "^1.8.1",
"vite-plugin-sass-glob-import": "^5.0.0",
"vite-plugin-vue-devtools": "^7.7.1",
"vitest": "^3.0.5",
"vitest-canvas-mock": "^0.3.3",
"vue": "^3.5.13"
},
"engines": {
"node": ">= 20",
"npm": ">= 9"
}
}