-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
98 lines (98 loc) · 2.83 KB
/
package.json
File metadata and controls
98 lines (98 loc) · 2.83 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
87
88
89
90
91
92
93
94
95
96
97
98
{
"name": "turtle-editor-viewer",
"version": "2.0.0",
"type": "module",
"description": "A modern React + TypeScript RDF/Turtle editor and visualizer",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview",
"lint": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
"type-check": "tsc --noEmit"
},
"dependencies": {
"@babel/plugin-transform-modules-commonjs": "^7.17.7",
"@comunica/query-sparql": "^4.5.0",
"@graphy/content.trig.scribe": "^4.3.4",
"@graphy/content.ttl.scribe": "^4.3.4",
"@graphy/content.ttl.write": "^4.3.4",
"@graphy/content.xml.scribe": "^4.3.4",
"@monaco-editor/react": "^4.7.0",
"@rdfjs/data-model": "^2.0.0",
"@rdfjs/dataset": "2.0.2",
"@rdfjs/formats-common": "^2.2.0",
"@rdfjs/parser-jsonld": "^1.3.0",
"@rdfjs/parser-n3": "^1.1.4",
"@rdfjs/serializer-jsonld": "^1.2.3",
"@rdfjs/serializer-jsonld-ext": "^3.0.0",
"@rdfjs/serializer-ntriples": "^1.0.3",
"@rdfjs/to-ntriples": "^2.0.0",
"@viz-js/viz": "^3.21.0",
"ace-builds": "^1.43.4",
"babel-core": "^6.26.3",
"bluebird": "^3.7.2",
"body-parser": "^1.19.2",
"bootstrap": "^5.1.3",
"browserify": "^17.0.0",
"clownface": "^1.4.0",
"commander": "^9.1.0",
"d3": "^7.8.5",
"exorcist": "^2.0.0",
"express": "^4.17.3",
"file-saver": "^2.0.5",
"hylar-core": "^1.2.2",
"jquery": "^3.6.0",
"lodash": "^4.17.21",
"monaco-editor": "^0.55.1",
"n3": "^1.26.0",
"process": "^0.11.10",
"pug": "^3.0.3",
"rdf-ext": "^2.5.0",
"rdf-validate-shacl": "^0.4.3",
"rdfa-streaming-parser": "^1.5.0",
"rdfxml-streaming-parser": "^1.5.0",
"react": "^18.3.1",
"react-ace": "^10.1.0",
"react-dom": "^18.3.1",
"readable-stream": "^3.6.0",
"split.js": "^1.6.5",
"tmp": "^0.2.1",
"uglify-js": "^3.15.3",
"zustand": "^4.4.7"
},
"devDependencies": {
"@types/file-saver": "^2.0.7",
"@types/n3": "^1.16.4",
"@types/react": "^18.3.12",
"@types/react-dom": "^18.3.1",
"@types/split.js": "^1.0.4",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
"@vitejs/plugin-react": "^4.3.3",
"eslint": "^8.57.1",
"eslint-plugin-react-hooks": "^4.6.2",
"eslint-plugin-react-refresh": "^0.4.12",
"prettier": "^3.3.3",
"typescript": "^5.6.3",
"vite": "^7.2.2",
"vitest": "^4.0.10",
"webpack-bundle-analyzer": "^5.0.1",
"yarn": "^1.22.22"
},
"repository": {
"type": "git",
"url": "https://github.com/pwin/turtle-editor-viewer"
},
"homepage": "https://semantechs.co.uk/turtle-editor-viewer/",
"keywords": [
"rdf",
"turtle",
"semantic-web",
"graph-visualization",
"sparql",
"typescript",
"react"
],
"author": "pwin",
"license": "MIT"
}