-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
93 lines (93 loc) · 2.64 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
{
"name": "crate-o",
"version": "0.3.18",
"description": "A VueJS UI component to create and edit Research Object Crate (RO-Crate) metadata",
"keywords": [
"RO-Crate",
"rocrate",
"research object",
"research object crate",
"metadata",
"jsonld",
"editor",
"vue component",
"ro-crate editor"
],
"license": "GPL-3.0-or-later",
"contributors": [
"Alvin Sebastian (https://orcid.org/0000-0002-9086-1722)",
"Moises Sacal Bonequi (https://orcid.org/0000-0002-4438-2755)",
"Peter Sefton (https://orcid.org/0000-0002-3545-944X)",
"Rosanna Smith (https://orcid.org/0009-0006-2241-3377)"
],
"files": [
"dist",
"src/lib",
"!/src/lib/**/*.cy.js"
],
"main": "./dist/crate-o.js",
"module": "./dist/crate-o.js",
"type": "module",
"exports": {
".": {
"import": "./dist/crate-o.js",
"styles": "./dist/style.css"
},
"./css": "./dist/style.css",
"./DefaultRouteHandler": "./src/lib/DefaultRouteHandler.js",
"./*": "./*"
},
"repository": {
"type": "git",
"url": "https://github.com/Language-Research-Technology/crate-o"
},
"scripts": {
"dev": "vite",
"build": "vite build && cp README.md dist",
"build:library": "vite build --mode library",
"preview": "vite preview --port 5000",
"test": "cypress run --component --headless",
"test:ui": "cypress run --component --browser chrome",
"test:unit": "npm test -- --record --spec ",
"cypress:open": "npx cypress open",
"serve": "npm run build && npm run preview"
},
"dependencies": {
"@element-plus/icons-vue": "^2.3.1",
"leaflet": "^1.9.4",
"leaflet-editable": "^1.2.0",
"leaflet-gesture-handling": "^1.2.2",
"leaflet.path.drag": "^0.0.6",
"marked": "^13.0.0",
"mime": "^4.0.1",
"ro-crate": "^3.3.9"
},
"peerDependencies": {
"element-plus": "^2.7.5",
"vue": "^3.4.21"
},
"devDependencies": {
"@cypress/vue": "^6.0.0",
"@types/leaflet": "^1.9.3",
"@types/leaflet-editable": "^1.2.2",
"@types/wicg-file-system-access": "^2023.10.4",
"@vitejs/plugin-vue": "^5.0.4",
"ajv": "^8.12.0",
"autoprefixer": "^10.4.18",
"cypress": "^13.1.0",
"ejs": "^3.1.10",
"jsdom": "^24.0.0",
"postcss": "^8.4.21",
"ro-crate-excel": "^1.0.19",
"ro-crate-html": "^0.1.4",
"ro-crate-modes": "github:Language-Research-Technology/ro-crate-modes",
"rollup-plugin-visualizer": "^5.12.0",
"tailwindcss": "^3.4.1",
"to-arraybuffer": "^1.0.1",
"unplugin-auto-import": "^0.17.5",
"unplugin-element-plus": "^0.8.0",
"unplugin-vue-components": "^0.26.0",
"vite": "^5.1.5",
"vue-router": "^4.3.0"
}
}