UNPKG

1.85 kBJSONView Raw
1{
2 "name": "@tensorflow/tfjs-converter",
3 "version": "4.21.0",
4 "description": "Tensorflow model converter for javascript",
5 "main": "dist/tf-converter.node.js",
6 "jsnext:main": "dist/index.js",
7 "module": "dist/index.js",
8 "types": "dist/index.d.ts",
9 "unpkg": "dist/tf-converter.min.js",
10 "jsdelivr": "dist/tf-converter.min.js",
11 "miniprogram": "dist/miniprogram",
12 "repository": {
13 "type": "git",
14 "url": "https://github.com/tensorflow/tfjs.git",
15 "directory": "tfjs-converter"
16 },
17 "license": "Apache-2.0",
18 "peerDependencies": {
19 "@tensorflow/tfjs-core": "4.21.0"
20 },
21 "devDependencies": {
22 "@bazel/bazelisk": "^1.12.0",
23 "@bazel/ibazel": "^0.16.2",
24 "@tensorflow/tfjs-backend-cpu": "4.21.0",
25 "@tensorflow/tfjs-core": "4.21.0",
26 "@types/argparse": "^1.0.38",
27 "@types/long": "~3.0.32",
28 "@types/node-fetch": "1.6.9",
29 "argparse": "^1.0.10",
30 "node-fetch": "~2.6.1",
31 "opn": "~5.1.0",
32 "protobufjs": "~7.2.4",
33 "ts-node": "~8.8.2",
34 "typescript": "5.0.4",
35 "yalc": "~1.0.0-pre.50"
36 },
37 "scripts": {
38 "build": "bazel build :tfjs-converter_pkg",
39 "publish-npm": "bazel run :tfjs-converter_pkg.publish",
40 "test": "bazel test :tests",
41 "test-dev": "ibazel test :tests",
42 "test-debug": "bazel run :tfjs-converter_test --config=debug",
43 "test-converter": "bazel test :tfjs-converter_test",
44 "test-converter-debug": "yarn test-debug",
45 "test-snippets": "bazel test :test_snippets_test --test_output=all",
46 "gen-doc": "ts-node -s ./scripts/gen_doc.ts",
47 "model-summary": "ts-node -s ./tools/model_summary.ts",
48 "pb2json": "ts-node -s ./tools/pb2json_converter.ts",
49 "build-pip-package": "cd python && ./build-pip-package.sh --test /tmp/tfjs-pips",
50 "run-python-tests": "bazel test python/..."
51 },
52 "resolutions": {
53 "minimist": "1.2.6"
54 }
55}