83a598907f
* Debug logging * Yield based logging * Reintroduce non-dummy task manager, try add counting for BatchMessageSender, a couple of compiler target introductions on use statements. * Fixed time runtime err * Uncomment forgetme/rememberme * remove diffs from debug * missed commented out forgetme * yet more forgetme comments * * Added missing clientreqestsender clone to wasm client to stop premature drop & busyloop * Removed hacky mem::forget fix * Remove debug panic_hook * Conditional import + use of wasm_utils::console_log * add wasm_util dep * Commenting out or removing debug logging * Remove missed comment * cleanup gitignore * clippy * update go version in ci * removed unused deps * add clippy ignore * remove mixfetch from ci build * add minifetch fix * comment out unused ts builds * stop contract clients killing ci for the moment * wasm target locking for imports * Either remove console_log! macro or introduce cfg(debug_assertions) * downgrade netlink * debug assertions for console_log import * modify config logging (debug -> normal) * remove clone for client_request_sender + grab directly in struct creation * reintroduce debug print for config in debug mode * remove ood / unused custom topology from worker example file * clippy * clippy - ignore todo() tests * modified humantime test in line with new parsing rules
67 lines
2.7 KiB
JSON
67 lines
2.7 KiB
JSON
{
|
|
"name": "@nymproject/nymsphere",
|
|
"version": "1.0.0",
|
|
"private": true,
|
|
"license": "Apache 2.0",
|
|
"workspaces": [
|
|
"sdk/typescript/packages/**",
|
|
"sdk/typescript/examples/**",
|
|
"ts-packages/*",
|
|
"nym-wallet",
|
|
"explorer-nextjs",
|
|
"explorer-v2",
|
|
"types",
|
|
"clients/validator",
|
|
"sdk/typescript/packages/**",
|
|
"sdk/typescript/examples/**",
|
|
"sdk/typescript/codegen/**"
|
|
],
|
|
"scripts": {
|
|
"nuke": "npx rimraf **/node_modules node_modules",
|
|
"scrub": "npx rimraf **/dist dist",
|
|
"clean": "lerna run clean",
|
|
"build": "run-s build:types build:packages",
|
|
"build:wasm": "make sdk-wasm-build",
|
|
"build:types": "lerna run --scope @nymproject/types build --stream",
|
|
"build:packages": "run-s build:packages:theme build:packages:react",
|
|
"build:packages:theme": "lerna run --scope @nymproject/mui-theme build",
|
|
"build:packages:react": "lerna run --scope @nymproject/react build",
|
|
"build:playground": "lerna run --scope @nymproject/react storybook:build --stream",
|
|
"build:ci:storybook": "yarn build && yarn dev:on && run-p build:playground && yarn build:ci:storybook:collect-artifacts ",
|
|
"build:ci:storybook:collect-artifacts": "mkdir -p ts-packages/dist && mv sdk/typescript/packages/react-components/storybook-static ts-packages/dist/storybook ",
|
|
"prebuild:ci": "yarn dev:on && yarn",
|
|
"build:ci": "run-s build:types build:packages build:wasm build:ci:sdk",
|
|
"postbuild:ci": "yarn dev:off",
|
|
"build:ci:sdk": "lerna run --scope '{@nymproject/sdk,@nymproject/node-tester,@nymproject/sdk-react,@nymproject/mix-fetch,@nymproject/nodejs-client,@nymproject/mix-fetch-node}' build --stream",
|
|
"docs:prod:build": "run-s docs:prod:build:ws",
|
|
"docs:prod:build:ws": "lerna run docs:prod:build --stream",
|
|
"sdk:build": "./sdk/typescript/scripts/build-prod-sdk.sh",
|
|
"sdk:publish": "./sdk/typescript/scripts/publish.sh",
|
|
"lint": "lerna run lint --stream",
|
|
"lint:fix": "lerna run lint:fix --stream",
|
|
"tsc": "lerna run tsc --stream",
|
|
"types:lint:fix": "lerna run lint:fix --scope @nymproject/types --scope @nymproject/nym-wallet-app",
|
|
"audit:fix": "npm_config_yes=true npx yarn-audit-fix -- --dry-run",
|
|
"dev:on": "node sdk/typescript/scripts/dev-mode-add.mjs",
|
|
"dev:off": "node sdk/typescript/scripts/dev-mode-remove.mjs"
|
|
},
|
|
"devDependencies": {
|
|
"@npmcli/node-gyp": "^3.0.0",
|
|
"@types/minimatch": "^6.0.0",
|
|
"lerna": "^7.3.0",
|
|
"node-gyp": "^9.3.1",
|
|
"npm-run-all": "^4.1.5",
|
|
"tslog": "3.3.3"
|
|
},
|
|
"dependencies": {
|
|
"lucide-react": "^0.453.0"
|
|
},
|
|
"resolutions": {
|
|
"@cosmjs/amino": "^0.32.4",
|
|
"@cosmjs/proto-signing": "^0.32.4",
|
|
"@cosmjs/stargate": "^0.32.4",
|
|
"@cosmjs/cosmwasm-stargate": "^0.32.4",
|
|
"cosmjs-types": "^0.9.0"
|
|
}
|
|
}
|