-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
78 lines (78 loc) · 2.18 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
{
"name": "rdf-entity-viewer",
"type": "module",
"keywords": [
"rdf",
"entity",
"viewer",
"linked data",
"graph",
"triple"
],
"author": {
"name": "The QA Company",
"email": "info@qanswer.eu",
"homepage": "https://the-qa-company.com"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/the-qa-company/rdf-entity-viewer"
},
"version": "0.0.41",
"files": [
"dist"
],
"main": "./dist/rdf-entity-viewer.umd.cjs",
"module": "./dist/rdf-entity-viewer.js",
"types": "./dist/index.d.ts",
"scripts": {
"dev": "vite",
"lint": "eslint -c .eslintrc.json src",
"build": "tsc && vite build",
"buildGithubPage": "vite build -c vite.github-page.config.ts",
"preview": "vite preview",
"prepublishOnly": "npm run build && ./scripts/prepare-package.sh",
"postpublish": "./scripts/restore-package.sh"
},
"peerDependencies": {
"@emotion/react": "^11.10.4",
"@emotion/styled": "^11.10.4",
"@mui/icons-material": "^6.1.3",
"@mui/material": "^6.1.3",
"react": "^18.3.1"
},
"devDependencies": {
"@emotion/react": "^11.10.4",
"@emotion/styled": "^11.10.4",
"@fontsource/roboto": "^4.5.8",
"@mui/icons-material": "^6.1.3",
"@mui/material": "^6.1.3",
"@rollup/plugin-node-resolve": "^15.0.0",
"@types/node": "^22.7.5",
"@types/react": "^18.3.11",
"@types/react-dom": "^18.3.1",
"@typescript-eslint/eslint-plugin": "^5.39.0",
"@vitejs/plugin-react": "^2.1.0",
"eslint": "^8.24.0",
"eslint-config-standard": "^17.0.0",
"eslint-config-standard-jsx": "^11.0.0",
"eslint-config-standard-with-typescript": "^23.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-n": "^15.3.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-only-warn": "^1.0.3",
"eslint-plugin-promise": "^6.0.1",
"eslint-plugin-react": "^7.31.8",
"json": "^11.0.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"sass": "^1.55.0",
"typescript": "^4.6.4",
"vite": "^3.1.0",
"vite-plugin-checker": "^0.5.1",
"vite-plugin-dts": "^1.6.4",
"vite-plugin-eslint": "^1.8.1",
"vite-tsconfig-paths": "^3.5.1"
}
}