1{ 2 "name": "flatbuffers", 3 "version": "2.0.0", 4 "description": "Memory Efficient Serialization Library", 5 "files": [ 6 "js/*.js", 7 "js/*.d.ts", 8 "mjs/*.js", 9 "mjs/*.d.ts", 10 "ts/*.ts" 11 ], 12 "main": "js/flatbuffers.js", 13 "module": "mjs/index.mjs", 14 "directories": { 15 "doc": "docs", 16 "test": "tests" 17 }, 18 "scripts": { 19 "test": "npm run compile && cd tests && ./TypeScriptTest.sh", 20 "compile": "tsc && tsc -p tsconfig.mjs.json", 21 "prepublishOnly": "npm run compile" 22 }, 23 "repository": { 24 "type": "git", 25 "url": "git+https://github.com/google/flatbuffers.git" 26 }, 27 "keywords": [ 28 "flatbuffers" 29 ], 30 "author": "The FlatBuffers project", 31 "license": "SEE LICENSE IN LICENSE.txt", 32 "bugs": { 33 "url": "https://github.com/google/flatbuffers/issues" 34 }, 35 "homepage": "https://google.github.io/flatbuffers/", 36 "dependencies": {}, 37 "devDependencies": { 38 "@typescript-eslint/eslint-plugin": "^4.12.0", 39 "@typescript-eslint/parser": "^4.12.0", 40 "eslint": "^7.17.0", 41 "typescript": "^4.1.3" 42 } 43} 44