-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
84 lines (84 loc) · 2.53 KB
/
package.json
File metadata and controls
84 lines (84 loc) · 2.53 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
{
"name": "@e-infra/react-molstar-wrapper",
"private": false,
"type": "module",
"keywords": [
"react",
"molstar",
"typescript"
],
"description": "A React wrapper for Mol* (Molstar) molecular visualization library.",
"author": {
"name": "CERIT-SC"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/xcillik/react-molstar-wrapper"
},
"bugs": {
"url": "https://github.com/xcillik/react-molstar-wrapper/issues"
},
"homepage": "https://github.com/xcillik/react-molstar-wrapper",
"maintainers": [
"Jakub Čillík <cillik@muni.cz>",
"Romana Ďuráčiová <duraciova@mail.muni.cz>",
"Michal Mikuš <mikus@ics.muni.cz>"
],
"version": "0.0.10",
"main": "./dist/index.cjs.js",
"module": "./dist/index.es.js",
"types": "./dist/types/index.d.ts",
"scripts": {
"dev:showcase": "vite --config vite.config.showcase.ts",
"build:showcase": "vite build --config vite.config.showcase.ts",
"preview": "vite preview --config vite.config.showcase.ts",
"build:lib": "tsc -b && vite build --config vite.config.lib.ts",
"lint": "eslint .",
"lint:fix": "eslint --fix .",
"format": "prettier --write \"src/**/*.{ts,tsx,js,jsx,json,css,md}\" \"lib/**/*.{ts,tsx,js,jsx,json,css,md}\"",
"format:check": "prettier --check \"src/**/*.{ts,tsx,js,jsx,json,css,md}\" \"lib/**/*.{ts,tsx,js,jsx,json,css,md}\"",
"type:check": "tsc --noEmit",
"tsc": "tsc --noEmit --watch",
"check": "bun run type:check && bun run lint && bun run format:check"
},
"exports": {
".": {
"types": "./dist/types/index.d.ts",
"import": "./dist/index.es.js",
"require": "./dist/index.cjs.js"
},
"./style.css": "./dist/react-molstar-wrapper.css"
},
"files": [
"dist",
"README.md",
"LICENSE.md"
],
"devDependencies": {
"@tailwindcss/vite": "^4.1.18",
"@types/bun": "latest",
"@types/react": "^19.2.10",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react-swc": "^4.2.2",
"ajv": "8.17.1",
"autoprefixer": "^10.4.24",
"eslint": "^9.39.2",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-react-hooks": "^7.0.1",
"eslint-plugin-react-refresh": "^0.4.26",
"prettier": "3.8.1",
"rollup-preserve-directives": "^1.1.3",
"typescript": "^5.9.3",
"typescript-eslint": "^8.54.0",
"vite": "^7.3.1",
"vite-plugin-dts": "^4.5.4"
},
"peerDependencies": {
"react": "^19.2.4",
"react-dom": "^19.2.4",
"molstar": "^5.6.1",
"tailwindcss": "^4.1.18"
},
"dependencies": {}
}