2017-02-10 22:19:11 +00:00
|
|
|
{
|
|
|
|
"name": "flatbuffers",
|
2023-01-21 20:03:17 +00:00
|
|
|
"version": "23.1.20",
|
2017-02-10 22:19:11 +00:00
|
|
|
"description": "Memory Efficient Serialization Library",
|
2018-11-16 17:17:54 +00:00
|
|
|
"files": [
|
2021-09-23 23:22:49 +00:00
|
|
|
"js/**/*.js",
|
|
|
|
"js/**/*.d.ts",
|
|
|
|
"mjs/**/*.js",
|
|
|
|
"mjs/**/*.d.ts",
|
|
|
|
"ts/**/*.ts"
|
2018-11-16 17:17:54 +00:00
|
|
|
],
|
2022-03-10 18:08:13 +00:00
|
|
|
"main": "js/index.js",
|
|
|
|
"module": "mjs/index.js",
|
2017-02-10 22:19:11 +00:00
|
|
|
"directories": {
|
|
|
|
"doc": "docs",
|
|
|
|
"test": "tests"
|
|
|
|
},
|
|
|
|
"scripts": {
|
2022-09-13 03:03:23 +00:00
|
|
|
"test": "npm run compile && cd tests/ts && python3 ./TypeScriptTest.py",
|
2022-09-29 22:03:35 +00:00
|
|
|
"lint": "eslint ts",
|
2022-08-29 23:37:43 +00:00
|
|
|
"compile": "tsc && tsc -p tsconfig.mjs.json && rollup -c",
|
2021-06-03 20:40:35 +00:00
|
|
|
"prepublishOnly": "npm install --only=dev && npm run compile"
|
2017-02-10 22:19:11 +00:00
|
|
|
},
|
|
|
|
"repository": {
|
|
|
|
"type": "git",
|
|
|
|
"url": "git+https://github.com/google/flatbuffers.git"
|
|
|
|
},
|
|
|
|
"keywords": [
|
|
|
|
"flatbuffers"
|
|
|
|
],
|
|
|
|
"author": "The FlatBuffers project",
|
|
|
|
"license": "SEE LICENSE IN LICENSE.txt",
|
|
|
|
"bugs": {
|
|
|
|
"url": "https://github.com/google/flatbuffers/issues"
|
|
|
|
},
|
2018-11-16 17:17:54 +00:00
|
|
|
"homepage": "https://google.github.io/flatbuffers/",
|
2020-09-17 19:21:14 +00:00
|
|
|
"dependencies": {},
|
|
|
|
"devDependencies": {
|
2022-09-13 03:03:23 +00:00
|
|
|
"@bazel/typescript": "5.2.0",
|
|
|
|
"@types/node": "18.7.16",
|
|
|
|
"@typescript-eslint/eslint-plugin": "^5.36.2",
|
|
|
|
"@typescript-eslint/parser": "^5.36.2",
|
|
|
|
"eslint": "^8.23.1",
|
|
|
|
"rollup": "^2.79.0",
|
|
|
|
"typescript": "^4.8.3"
|
2020-09-17 19:21:14 +00:00
|
|
|
}
|
2017-02-10 22:19:11 +00:00
|
|
|
}
|