2017-02-10 22:19:11 +00:00
|
|
|
{
|
|
|
|
"name": "flatbuffers",
|
2022-08-30 03:43:36 +00:00
|
|
|
"version": "2.0.8",
|
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-08-07 18:42:02 +00:00
|
|
|
"test": "npm run compile && cd tests && python3 ./TypeScriptTest.py",
|
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-03-10 18:08:13 +00:00
|
|
|
"@bazel/typescript": "^5.2.0",
|
|
|
|
"@types/node": "17.0.21",
|
2021-01-19 20:51:13 +00:00
|
|
|
"@typescript-eslint/eslint-plugin": "^4.12.0",
|
|
|
|
"@typescript-eslint/parser": "^4.12.0",
|
|
|
|
"eslint": "^7.17.0",
|
2022-08-29 23:37:43 +00:00
|
|
|
"rollup": "^2.78.0",
|
2022-03-10 18:08:13 +00:00
|
|
|
"typescript": "^4.5.5"
|
2020-09-17 19:21:14 +00:00
|
|
|
}
|
2017-02-10 22:19:11 +00:00
|
|
|
}
|