-
Notifications
You must be signed in to change notification settings - Fork 27
/
package.json
64 lines (64 loc) · 2 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
{
"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:unit": "vitest run",
"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'",
"version": "git add dist"
},
"devDependencies": {
"@iiif/parser": "^2.1.2",
"@mdi/js": "^7.4.47",
"@rushstack/eslint-patch": "^1.10.3",
"@vitejs/plugin-vue": "^5.0.5",
"@vue/eslint-config-airbnb": "^8.0.0",
"@vue/test-utils": "^2.4.6",
"click-outside-vue3": "^4.0.1",
"cypress": "^13.11.0",
"eslint": "^8.57.0",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-cypress": "^2.15.2",
"eslint-plugin-vue": "^9.26.0",
"jsdom": "^24.1.0",
"openseadragon": "^3.0.0",
"start-server-and-test": "^2.0.4",
"striptags": "^3.2.0",
"unplugin-vue-components": "^0.27.0",
"vite": "^5.2.13",
"vite-plugin-banner": "^0.7.1",
"vite-plugin-eslint": "^1.8.1",
"vite-plugin-sass-glob-import": "^3.0.2",
"vitest": "^1.6.0",
"vitest-canvas-mock": "^0.3.3",
"vue": "^3.4.27"
},
"engines": {
"node": ">= 18",
"npm": ">= 9"
}
}