1{ 2 "name": "pigweedjs", 3 "version": "0.0.22", 4 "description": "An open source collection of embedded-targeted libraries", 5 "author": "The Pigweed Authors", 6 "license": "Apache-2.0", 7 "types": "./dist/types/ts/index.d.ts", 8 "exports": { 9 ".": "./dist/index.mjs", 10 "./protos": "./dist/protos/collection.umd.js", 11 "./protos/*": "./dist/protos/*", 12 "./logging": "./dist/logging.mjs" 13 }, 14 "bin": { 15 "pw_protobuf_compiler": "./dist/bin/pw_protobuf_compiler.js" 16 }, 17 "scripts": { 18 "prebuild": "rimraf dist && npm run build-protos", 19 "build-protos": "rollup -c rollup-protos.config.js && node dist/bin/build_default_protos.js", 20 "build": "npm run rollup", 21 "dev": "rollup -c -w", 22 "generate-pnpm-lockfile": "npx pnpm@8.5.1 install --lockfile-only", 23 "rollup": "rollup -c && npm run postbuild", 24 "postbuild": "rimraf dist/protos/types && chmod +x ./dist/bin/pw_protobuf_compiler.js", 25 "start": "tsc-watch --onSuccess \"rollup -c\"", 26 "check": "eslint . --ext .ts", 27 "fix": "eslint . --ext .ts --fix", 28 "test": "npm run build && jest --silent", 29 "jest": "jest" 30 }, 31 "devDependencies": { 32 "@codemirror/autocomplete": "^6.16.3", 33 "@codemirror/lang-python": "^6.1.6", 34 "@codemirror/state": "^6.4.1", 35 "@codemirror/theme-one-dark": "^6.1.2", 36 "@lit-labs/virtualizer": "^2.0.7", 37 "@material-ui/core": "^4.12.1", 38 "@material-ui/lab": "^4.0.0-alpha.60", 39 "@material/web": "^1.5.0", 40 "@open-wc/testing": "^3.0.0-next.5", 41 "@remcovaes/web-test-runner-vite-plugin": "^1.2.1", 42 "@rollup/plugin-commonjs": "^19.0.0", 43 "@rollup/plugin-node-resolve": "^13.3.0", 44 "@rollup/plugin-terser": "^0.4.4", 45 "@rollup/plugin-typescript": "^8.3.3", 46 "@shoelace-style/shoelace": "^2.15.0", 47 "@types/crc": "^3.4.0", 48 "@types/google-protobuf": "^3.15.5", 49 "@types/jest": "^28.1.4", 50 "@types/mocha": "^10.0.6", 51 "@types/node": "^22.8.4", 52 "@types/papaparse": "^5.3.15", 53 "@types/react": "^17.0.14", 54 "@types/react-dom": "^17.0.9", 55 "@typescript-eslint/eslint-plugin": "^5.59.7", 56 "@web/test-runner": "^0.18.0", 57 "@web/test-runner-commands": "^0.9.0", 58 "@web/test-runner-playwright": "^0.11.0", 59 "ansi_up": "^5.1.0", 60 "arg": "^5.0.2", 61 "base64-js": "^1.5.1", 62 "codemirror": "^6.0.1", 63 "debug": "^4.3.2", 64 "eslint": "^8.47.0", 65 "eslint-config-prettier": "^8.8.0", 66 "eslint-config-standard-with-typescript": "^34.0.1", 67 "eslint-plugin-import": "^2.26.0", 68 "eslint-plugin-lit": "^1.8.3", 69 "eslint-plugin-lit-a11y": "^4.1.0", 70 "eslint-plugin-n": "^15.7.0", 71 "eslint-plugin-promise": "^6.1.1", 72 "html-react-parser": "^1.4.0", 73 "http-server": "^13.0.2", 74 "install-peers": "^1.0.3", 75 "jest-environment-jsdom": "^28.1.3", 76 "lit": "^3.1.2", 77 "postcss": "^8.4.24", 78 "prettier": "^3.1.1", 79 "prettier-plugin-jsdoc": "^0.4.2", 80 "protoc-gen-js": "^3.21.2", 81 "react": "^17.0.2", 82 "react-dom": "^17.0.2", 83 "requirejs": "^2.3.6", 84 "rimraf": "^3.0.2", 85 "rollup": "^2.52.8", 86 "rollup-plugin-node-builtins": "^2.0.0", 87 "rollup-plugin-node-globals": "^1.4.0", 88 "rollup-plugin-node-polyfills": "^0.2.1", 89 "rollup-plugin-postcss": "^4.0.2", 90 "rollup-plugin-sourcemaps": "^0.6.3", 91 "rxjs": "^7.2.0", 92 "sinon": "^17.0.1", 93 "tmp": "0.2.1", 94 "ts-jest": "^28.0.5", 95 "ts-node": "^10.8.1", 96 "tsc-watch": "^5.0.3", 97 "tslib": "^2.4.0", 98 "typescript": "^4.3.5", 99 "vite": "^5.2.8" 100 }, 101 "dependencies": { 102 "@protobuf-ts/protoc": "^2.9.4", 103 "buffer": "^6.0.3", 104 "google-protobuf": "^3.17.3", 105 "long": "^5.2.1", 106 "papaparse": "^5.4.1", 107 "ts-protoc-gen": "^0.15.0" 108 }, 109 "config": { 110 "protocVersion": "28.2" 111 }, 112 "files": [ 113 "dist", 114 "README.md" 115 ] 116} 117