685f26792f
* Remove pnpm-lock.yaml * Add initial documentation * updating packages and disconnecting on mixFetch when unmount * handle the mixFetch error * remove the mixfetch disconexion * using now rc5 version * Update overview * Update installation page * wip startong * Copy edits and improving some of the formatting and styling * Improve naming * Add CosmosKit example * Linting * Update next.js * Remove lock file * More CosmosKit docs * wip * cleaninig a bit * quick fix for wallet error * wip wallet ui * wip wallet ui * more wallet ui * fixing key error * wip * Example code * Add custom style for code blocks to limit their height and scroll * Change bg on darkmode * Add styling to darkmode * Reorg CSS - tbc * Move example code * Ledger support in Cosmos Kit - wip * Change default app to Typescript * Remove static export * Tidy up wallet UI * Set theme colour by hue * Force dark mode theme * some wallet ui * Style buttons sidebar * Sidebar colors * Links styling * Style callouts * Add styling to button, chips, progress motion component * Style agenda * adding loaders * wallet loaders * traffic styles * Fix colours * Add links to methods * Add execute code block * Add traffic codeblock * Add mixfetch codeblock * Add Cosmokit codeblock * Update info on getting started * fixing build * Fix build error * Fix theme * Fix filenames on examples * Add copy to CosmosKit example --------- Co-authored-by: Mark Sinclair <mmsinclair@users.noreply.github.com> Co-authored-by: Gala <calero.vg@gmail.com> Co-authored-by: Lorexia <alexia.lorenza.martinel@protonmail.com>
51 lines
2.2 KiB
JSON
51 lines
2.2 KiB
JSON
{
|
|
"name": "@nymproject/nymsphere",
|
|
"version": "1.0.0",
|
|
"private": true,
|
|
"license": "Apache 2.0",
|
|
"workspaces": [
|
|
"dist/wasm/**",
|
|
"sdk/typescript/packages/**",
|
|
"ts-packages/*",
|
|
"nym-wallet",
|
|
"nym-connect/**",
|
|
"explorer",
|
|
"types",
|
|
"clients/validator"
|
|
],
|
|
"scripts": {
|
|
"nuke": "npx rimraf **/node_modules node_modules",
|
|
"clean": "lerna run clean",
|
|
|
|
"build:ci:sdk": "run-s build:types build:packages build:wasm build:sdk:ci",
|
|
"build:sdk:ci": "lerna run --scope '{@nymproject/sdk,@nymproject/node-tester,@nymproject/sdk-react,@nymproject/mix-fetch}' build:dev --stream",
|
|
|
|
"build": "run-s build:types build:packages",
|
|
"build:wasm": "make sdk-wasm-build",
|
|
"build:sdk": "make sdk-typescript-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:react-example": "lerna run --scope @nymproject/react-webpack-with-theme-example build --stream",
|
|
"build:playground": "lerna run --scope @nymproject/react storybook:build --stream",
|
|
"build:ci": "yarn build && run-p build:react-example build:playground && yarn build:ci:collect-artifacts",
|
|
"build:ci:collect-artifacts": "mkdir -p ts-packages/dist && mv ts-packages/react-components/storybook-static ts-packages/dist/storybook && mv ts-packages/react-webpack-with-theme-example/dist ts-packages/dist/example",
|
|
"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"
|
|
},
|
|
"devDependencies": {
|
|
"lerna": "^6.6.2",
|
|
"npm-run-all": "^4.1.5",
|
|
"@npmcli/node-gyp": "^3.0.0",
|
|
"node-gyp": "^9.3.1"
|
|
}
|
|
}
|