-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 1.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
{
"name": "@zazuko/rdf-converter",
"version": "0.2.8",
"main": "index.js",
"author": "Zazuko GmbH",
"license": "AGPL",
"type": "module",
"private": true,
"scripts": {
"prepare": "husky install",
"postinstall": "patch-package",
"lint": "eslint --quiet . --ignore-path .eslintignore --ignore-path .gitignore",
"analyze": "lit-analyzer --strict --quiet",
"start": "vite",
"build": "vite build --outDir ../dist"
},
"dependencies": {
"@polymer/iron-icon": "^3.0.1",
"@rdfjs-elements/formats-pretty": "^0.6.7",
"@rdfjs-elements/rdf-editor": "^0.5.7",
"@rdfjs-elements/rdf-snippet": "^0.4.3",
"@rdfjs/term-set": "^2.0.1",
"@vaadin/vaadin": "^22",
"@zazuko/formats-lazy": "^1.0.1",
"@zazuko/rdf-vocabularies": ">=2021",
"clipboard-copy": "^4.0.1",
"http-media-type": "^1.3.2",
"lit": "^2",
"lit-vaadin-helpers": "^0.3.1",
"rdfa-streaming-parser": "^2.0.1",
"tbbt-ld": "^1.1.0"
},
"devDependencies": {
"@changesets/cli": "^2.23.0",
"@esbuild-plugins/node-globals-polyfill": "^0.2.3",
"@open-wc/eslint-config": "^7.0.0",
"es-dev-commonjs-transformer": "^0.2.0",
"eslint": "^8.17.0",
"eslint-config-prettier": "^8.5.0",
"husky": "^6.0.0",
"lint-staged": "^11.0.0",
"lit-analyzer": "^2.0.3",
"patch-package": "^8.0.0",
"process": "^0.11.10",
"rollup-plugin-node-polyfills": "^0.2.1",
"vite": "^5.2.6",
"vite-raw-plugin": "^1.0.2"
},
"lint-staged": {
"*.js": [
"eslint --quiet --fix",
"prettier --write"
]
},
"repository": {
"type": "git",
"url": "https://github.com/zazuko/rdf-converter.git"
}
}