1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071 |
- {
- "name": "@rcsb/rcsb-molstar",
- "version": "2.7.2",
- "description": "RCSB PDB apps and props based on Mol*.",
- "homepage": "https://github.com/molstar/rcsb-molstar#readme",
- "repository": {
- "type": "git",
- "url": "https://github.com/molstar/rcsb-molstar.git"
- },
- "bugs": {
- "url": "https://github.com/molstar/rcsb-molstar/issues"
- },
- "scripts": {
- "test": "npm run lint",
- "lint": "eslint src/**/*.ts",
- "build": "npm run build-tsc && npm run build-extra && npm run build-webpack",
- "build-tsc": "tsc --incremental",
- "build-extra": "cpx \"src/**/*.{scss,html,ico}\" build/src/",
- "build-webpack": "webpack --mode production",
- "watch": "concurrently -c \"green,gray,gray\" --names \"tsc,ext,wpc\" --kill-others \"npm:watch-tsc\" \"npm:watch-extra\" \"npm:watch-webpack\"",
- "watch-tsc": "tsc --watch --incremental",
- "watch-extra": "cpx \"src/**/*.{scss,html,ico}\" build/src/ --watch",
- "watch-webpack": "webpack -w --mode development --stats minimal",
- "serve": "http-server -p 1335",
- "preversion": "npm run test",
- "version": "npm run build",
- "postversion": "git push && git push --tags"
- },
- "publishConfig": {
- "registry": "https://registry.npmjs.org/"
- },
- "main": "build/src/index.js",
- "files": [
- "build/dist/",
- "build/src/viewer/"
- ],
- "author": "RCSB PDB and Mol* Contributors",
- "license": "MIT",
- "devDependencies": {
- "@typescript-eslint/eslint-plugin": "^6.4.0",
- "@typescript-eslint/parser": "^6.4.0",
- "buffer": "^6.0.3",
- "concurrently": "^8.2.0",
- "cpx2": "^5.0.0",
- "crypto-browserify": "^3.12.0",
- "css-loader": "^6.8.1",
- "eslint": "^8.47.0",
- "extra-watch-webpack-plugin": "^1.0.3",
- "file-loader": "^6.2.0",
- "fs-extra": "^11.1.1",
- "mini-css-extract-plugin": "^2.7.6",
- "path-browserify": "^1.0.1",
- "raw-loader": "^4.0.2",
- "sass": "^1.65.1",
- "sass-loader": "^13.3.2",
- "stream-browserify": "^3.0.0",
- "style-loader": "^3.3.3",
- "typescript": "^5.1.6",
- "webpack": "^5.88.2",
- "webpack-cli": "^5.1.4"
- },
- "dependencies": {
- "@types/react": "^18.2.20",
- "@types/react-dom": "^18.2.7",
- "molstar": "^3.38.3",
- "react": "^18.2.0",
- "react-dom": "^18.2.0",
- "rxjs": "^7.8.1",
- "tslib": "^2.6.1"
- }
- }
|