-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
95 lines (95 loc) · 3.19 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
{
"name": "@om-mediaworks/shacl-form",
"version": "0.0.3",
"type": "module",
"scripts": {
"serve": "vite",
"build": "tsc && vite build",
"build-demo": "vite build --config vite.config.demo.ts && cp -R data docs/data && cp -R shapes docs/shapes && cp docs/index.html docs/404.html && touch docs/.nojekyll && echo \"shacl-form.mediaworks.global\" > docs/CNAME",
"preview": "vite preview",
"storage": "cd storage && deno run --allow-all storage.ts"
},
"main": "dist/ShaclForm.js",
"devDependencies": {
"@m-ld/m-ld": "^0.9.2",
"@types/lodash-es": "^4.17.7",
"@types/n3": "^1.10.4",
"@types/node": "^18.15.11",
"@types/rdf-ext": "^2.0.2",
"@types/rdf-validate-shacl": "^0.4.2",
"@types/rdfjs__data-model": "^2.0.3",
"@types/rdfjs__dataset": "^2.0.2",
"@types/rdfjs__namespace": "^2.0.3",
"@types/rdfjs__score": "^0.1.1",
"@types/react-dom": "^18.0.11",
"@types/sortablejs": "^1.15.1",
"buffer": "^6.0.3",
"marked": "^7.0.5",
"memory-level": "^1.0.0",
"sass": "^1.62.1",
"socket.io-client": "^4.7.2",
"typescript": "^5.0.3",
"vite": "^4.2.0",
"vite-plugin-dts": "^3.5.2"
},
"dependencies": {
"@comunica/query-sparql": "^2.9.0",
"@editorjs/checklist": "^1.5.0",
"@editorjs/code": "^2.8.0",
"@editorjs/delimiter": "^1.3.0",
"@editorjs/editorjs": "^2.27.2",
"@editorjs/embed": "^2.5.3",
"@editorjs/header": "^2.7.0",
"@editorjs/image": "^2.8.1",
"@editorjs/inline-code": "^1.4.0",
"@editorjs/link": "^2.5.0",
"@editorjs/list": "^1.8.0",
"@editorjs/marker": "^1.3.0",
"@editorjs/paragraph": "^2.10.0",
"@editorjs/quote": "^2.5.0",
"@editorjs/raw": "^2.4.0",
"@editorjs/simple-image": "^1.5.1",
"@editorjs/table": "^2.2.2",
"@editorjs/warning": "^1.3.0",
"@fluent/langneg": "^0.7.0",
"@fluent/react": "^0.15.0",
"@iconify-icon/react": "^1.0.8",
"@rdfjs/dataset": "^2.0.1",
"@rdfjs/namespace": "^2.0.0",
"@rdfjs/score": "^0.1.1",
"bcp47-picker": "^1.0.16",
"editorjs-drag-drop": "^1.1.13",
"fetch-sparql-endpoint": "^4.0.0",
"grapoi": "^1.0.0",
"iconify-icon": "^1.0.8",
"intl-polyfill": "^0.0.3",
"jsonld": "^8.2.0",
"lodash-es": "^4.17.21",
"n3": "^1.16.4",
"rdf-ext": "^2.2.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-dropzone": "^14.2.3",
"react-editor-js": "^2.1.0",
"react-indiana-drag-scroll": "^2",
"react-sortablejs": "^6.1.4",
"react-textarea-autosize": "^8.5.2",
"shacl-engine": "^0.1.0",
"sortablejs": "^1.15.0",
"uhtml": "^3.1.0"
},
"description": "SHACL form is a frontend library that shows forms from a SHACL shape. It uses customElements, also for the widgets, this will enable a third party developer to bring their own widgets that might be made with any other technology as long as it is exported as a customElement.",
"directories": {
"lib": "lib"
},
"repository": {
"type": "git",
"url": "git+https://github.com/OM-MediaWorks/shacl-form.git"
},
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/OM-MediaWorks/shacl-form/issues"
},
"homepage": "https://github.com/OM-MediaWorks/shacl-form#readme"
}