-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
86 lines (86 loc) · 3.47 KB
/
Copy pathpackage.json
File metadata and controls
86 lines (86 loc) · 3.47 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
{
"name": "solid-cockpit",
"version": "1.4.0",
"description": "The Solid Cockpit application for Solid Pod utilization",
"main": "~/src/App.vue",
"homepage": "https://knowledgeonwebscale.github.io/solid-cockpit",
"repository": "https://github.com/KNowledgeOnWebScale/solid-cockpit/tree/EDC_active",
"author": "Elias Crum",
"license": "MIT",
"type": "module",
"packageManager": "npm@11.17.0",
"engines": {
"node": ">=24.19.0 <25",
"npm": ">=11.17.0"
},
"scripts": {
"dev": "vite",
"version:bump": "node ./scripts/bump-version.mjs",
"build": "vite build",
"build:highmem": "NODE_OPTIONS=--max-old-space-size=8192 vite build",
"serve": "vite preview",
"test:unit": "node --test --import ./tests/register-ts-loader.mjs ./tests/unit/*.test.ts",
"test:unit:watch": "node --test --watch --import ./tests/register-ts-loader.mjs ./tests/unit/*.test.ts",
"test:unit:coverage": "node ./scripts/unit-coverage.mjs",
"test:unit:compliance": "node ./scripts/unit-coverage.mjs --enforce",
"test:unit:compliance:quiet": "node ./scripts/unit-coverage.mjs --enforce --quiet",
"test:component": "vitest run --config ./vitest.config.ts",
"test:component:watch": "vitest --config ./vitest.config.ts",
"test:component:coverage": "vitest run --coverage --config ./vitest.config.ts",
"test:component:compliance": "vitest run --coverage --config ./vitest.config.ts",
"test:component:compliance:quiet": "node ./node_modules/vitest/vitest.mjs run --coverage --config ./vitest.config.ts --reporter=dot --coverage.reporter=json-summary --coverage.reportsDirectory=coverage/component",
"test:compliance": "npm run test:unit:compliance && npm run test:component:compliance",
"test:compliance:quiet": "node ./scripts/precommit-compliance.mjs",
"hooks:install": "node ./scripts/setup-git-hooks.mjs",
"prepare": "node ./scripts/setup-git-hooks.mjs",
"github-post-build": "node scripts/github-post-build.mjs",
"deploy": "gh-pages -d dist"
},
"dependencies": {
"@comunica/context-entries": "^5.3.0",
"@comunica/logger-pretty": "^5.3.0",
"@comunica/query-sparql": "^5.3.0",
"@comunica/query-sparql-link-traversal-solid": "^0.8.0",
"@comunica/query-sparql-solid": "^5.0.1",
"@inrupt/solid-client": "^3.0.0",
"@inrupt/solid-client-authn-browser": "^5.0.0",
"@inrupt/solid-client-authn-node": "^5.0.0",
"@mdi/font": "^7.4.47",
"@triply/yasqe": "^4.2.28",
"@triply/yasr": "^4.2.28",
"@vitejs/plugin-vue": "^6.0.8",
"actor-query-process-remote-cache": "^0.1.2",
"core-js": "^3.50.0",
"fs": "^0.0.1-security",
"jsonld": "^9.0.0",
"material-icons": "^1.13.14",
"n3": "^2.4.0",
"papaparse": "^5.7.0",
"pinia": "^4.0.3",
"query-sparql-remote-cache": "^0.0.9",
"sparqljs": "^3.7.4",
"vite": "^8.2.2",
"vue": "^3.5.41",
"vue-router": "^5.2.0",
"vuetify": "^3.13.2",
"z3-solver": "^4.16.0"
},
"devDependencies": {
"@tsconfig/node24": "^24.0.5",
"@typescript-eslint/eslint-plugin": "^8.68.0",
"@typescript-eslint/parser": "^8.68.0",
"@vitest/coverage-istanbul": "^4.1.11",
"@vue/eslint-config-typescript": "^14.9.0",
"@vue/test-utils": "^2.4.11",
"esbuild": "^0.28.2",
"eslint": "^10.9.1",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.6",
"eslint-plugin-vue": "^10.10.0",
"gh-pages": "^6.3.0",
"jsdom": "^30.0.1",
"prettier": "^3.9.6",
"typescript": "^5.9.3",
"vitest": "^4.1.11"
}
}