-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
92 lines (92 loc) · 2.53 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
{
"name": "@sib-swiss/sparql-editor",
"version": "0.2.4",
"description": "A standard web component to easily deploy a user-friendly SPARQL query editor for one or more endpoints. Built on the popular YASGUI editor, it provides context-aware autocomplete for classes and predicates based on the content of the endpoints.",
"license": "MIT",
"author": {
"name": "Vincent Emonet",
"email": "[email protected]"
},
"type": "module",
"main": "dist/sparql-editor.min.js",
"module": "dist/sparql-editor.js",
"types": "dist/sparql-editor.d.ts",
"files": [
"dist/*"
],
"scripts": {
"dev": "vite",
"demo": "npx http-server demo",
"build": "vite build",
"fmt": "prettier --write . && eslint . --fix --ignore-pattern dist/",
"lint": "prettier --check . && eslint . --ignore-pattern dist/",
"test": "npm run lint && vitest run",
"upgrade": "npx npm-check-updates -u && npm install",
"prepare": "husky",
"version": "npm run lint && npm run build && auto-changelog -p && git add CHANGELOG.md && npm publish",
"postversion": "git push origin v$(npm pkg get version | tr -d \\\")"
},
"dependencies": {
"@zazuko/yasgui": "^4.3.3",
"highlight.js": "^11.10.0",
"mermaid": "^11.3.0",
"sparqljs": "^3.7.3"
},
"devDependencies": {
"@eslint/js": "^9.13.0",
"@rollup/plugin-terser": "^0.4.4",
"@rollup/plugin-typescript": "^12.1.1",
"@testing-library/dom": "^10.4.0",
"@testing-library/jest-dom": "^6.6.2",
"@types/eslint__js": "^8.42.3",
"@types/node": "^22.7.8",
"@types/sparqljs": "^3.1.11",
"auto-changelog": "^2.5.0",
"eslint": "^9.13.0",
"husky": "^9.1.6",
"jsdom": "^25.0.1",
"lint-staged": "^15.2.10",
"prettier": "^3.3.3",
"tslib": "^2.8.0",
"typescript": "^5.6.3",
"typescript-eslint": "^8.11.0",
"vite": "^5.4.9",
"vitest": "^2.1.3"
},
"prettier": {
"semi": true,
"tabWidth": 2,
"singleQuote": false,
"bracketSpacing": false,
"arrowParens": "avoid",
"useTabs": false,
"printWidth": 120
},
"lint-staged": {
"*.{js,jsx,ts,tsx,json,css,md,html}": [
"prettier --write",
"eslint --fix"
]
},
"auto-changelog": {
"unreleased": false,
"commitLimit": false
},
"keywords": [
"SPARQL",
"editor",
"YASGUI",
"query",
"semantic web",
"RDF",
"Linked Data"
],
"repository": {
"type": "git",
"url": "https://github.com/sib-swiss/sparql-editor.git"
},
"private": false,
"publishConfig": {
"access": "public"
}
}