{ "name": "@mat3ra/esse", "version": "0.0.0", "description": "Mat3ra's Excellent Source of Schemas and Examples (ESSE) for Digital Materials R&D", "scripts": { "transpile": "tsc -p tsconfig-transpile.json", "build-schemas": "BUILD_ASSETS=true BUILD_PYTHON_MODULES=true BUILD_PATH='./dist/js' ts-node build_schemas.ts", "compile-types": "ts-node compile_ts.ts", "transpile-and-build-assets": "npm run set-schema-ids && npm run build-schemas && npm run compile-types && npm run transpile", "test": "npm run build-schemas && nyc --reporter=text mocha --recursive --timeout 15000 --bail tests/js", "test-only": "nyc --reporter=text mocha --recursive --bail tests/js", "lint": "eslint src/js && prettier --write src/js", "lint:fix": "eslint --fix --cache src/js && prettier --write src/js", "prettier": "prettier --check src/js", "prepare": "husky install || exit 0", "set-schema-ids": "ts-node set_schema_ids.ts" }, "repository": { "type": "git", "url": "https://github.com/Exabyte-io/esse.git" }, "main": "dist/js/esse/index.js", "author": "Mat3ra.com", "email": "info@mat3ra.com", "bugs": { "url": "https://github.com/Exabyte-io/exabyte-esse/issues" }, "homepage": "https://github.com/Exabyte-io/esse", "devDependencies": { "@exabyte-io/eslint-config": "2025.5.13-0", "@mat3ra/tsconfig": "^2024.6.3-0", "@typescript-eslint/eslint-plugin": "^5.62.0", "@typescript-eslint/parser": "^5.62.0", "chai": "4.5.0", "eslint": "^7.32.0", "eslint-config-airbnb": "^19.0.4", "eslint-config-prettier": "^8.10.0", "eslint-import-resolver-exports": "^1.0.0-beta.5", "eslint-import-resolver-meteor": "^0.4.0", "eslint-import-resolver-node": "^0.3.9", "eslint-plugin-import": "^2.31.0", "eslint-plugin-jsdoc": "^50.6.9", "eslint-plugin-jsonc": "^2.20.0", "eslint-plugin-jsx-a11y": "^6.10.2", "eslint-plugin-mui-path-imports": "0.0.15", "eslint-plugin-prettier": "^4.2.1", "eslint-plugin-react": "^7.37.4", "eslint-plugin-react-hooks": "^4.6.2", "eslint-plugin-simple-import-sort": "^7.0.0", "husky": "^7.0.4", "lint-staged": "^12.5.0", "mocha": "10.8.2", "nyc": "15.1.0", "prettier": "^2.8.8", "prettyjson": "^1.2.5", "ts-node": "^10.9.2", "typescript": "^4.9.5" }, "license": "Apache-2.0", "dependencies": { "@mat3ra/utils": "2026.3.7-0", "@babel/cli": "^7.27.0", "@babel/core": "^7.26.10", "@babel/eslint-parser": "^7.27.0", "@babel/plugin-proposal-class-properties": "^7.18.6", "@babel/preset-env": "^7.26.9", "@babel/preset-react": "^7.26.3", "@babel/preset-typescript": "^7.27.0", "@babel/register": "^7.25.9", "@babel/runtime-corejs3": "^7.27.0", "@types/chai": "^4.3.20", "@types/js-yaml": "^4.0.9", "@types/json-schema-merge-allof": "^0.6.5", "@types/mocha": "^10.0.10", "ajv": "^8.17.1", "ajv-formats": "^2.1.1", "js-yaml": "^4.1.0", "json-schema": "^0.4.0", "json-schema-deref-sync": "0.14.0", "json-schema-merge-allof": "^0.8.1", "lodash": "4.17.21", "json-schema-to-typescript": "^15.0.4" }, "engines": { "node": ">=14.0.0" }, "lint-staged": { "src/**/*.js": [ "eslint --cache --fix", "prettier --write" ], "src/**/*.css": "prettier --write", "schemas/**/*.json": "eslint --cache --fix --no-ignore", "example/**/*.json": "eslint --cache --fix --no-ignore" }, "exports": { "./dist/js/schema/*.json": "./dist/js/schema/*.json", "./dist/js/example/*": "./dist/js/example/*", "./dist/js/utils/*": "./dist/js/utils/*.js", "./dist/js/esse/*": "./dist/js/esse/*.js", "./dist/js/json_include/*": "./dist/js/json_include/*.js", "./dist/js/scripts/*": "./dist/js/scripts/*.js", "./dist/js/types": "./dist/js/types.js", "./dist/js/schemas.json": "./dist/js/schemas.json" } }