626d013547
* switch from yarn to pnpm * Remove full-nym-wasm (#6796) * Remove nym-browser-extension (#6798) * Remove nym-browser-extension * remove unused from makefile * Remove Node tester (#6800) * Remove dom-utils (#6801) * gh-actions: remove pnpm version * nuke dist and pkg * add missing dependency * set node version to 24 and pnpm version to 11 * upgrade lock file from pnpm version 9 to 11 * pnpm add approved builds * yarn -> pnpm * upgrade jest version * yarn -> pnpm * Remove unused cfg; clippy! * pnpm: when dev mode is on, unfreeze the lock file * pnpm approve more scripts * pnpm syntax error * add `pnpm i` * disable eslint temporarily while switching to biome in later PR --------- Co-authored-by: Mark Sinclair <mmsinclair@users.noreply.github.com> Co-authored-by: mfahampshire <maxhampshire@pm.me>
43 lines
1.2 KiB
JSON
43 lines
1.2 KiB
JSON
{
|
|
"name": "@nymproject/types",
|
|
"version": "1.0.0",
|
|
"license": "Apache-2.0",
|
|
"main": "dist/index.js",
|
|
"types": "dist/index.d.ts",
|
|
"peerDependencies": {
|
|
"@cosmjs/math": "^0.27.1",
|
|
"bs58": "4",
|
|
"bech32": "^1.1.4"
|
|
},
|
|
"devDependencies": {
|
|
"@nymproject/eslint-config-react-typescript": "workspace:*",
|
|
"@types/bs58": "catalog:",
|
|
"@typescript-eslint/eslint-plugin": "catalog:",
|
|
"@typescript-eslint/parser": "catalog:",
|
|
"babel-plugin-root-import": "^5.1.0",
|
|
"eslint": "catalog:",
|
|
"eslint-config-airbnb": "catalog:",
|
|
"eslint-config-airbnb-typescript": "catalog:",
|
|
"eslint-config-prettier": "catalog:",
|
|
"eslint-import-resolver-root-import": "catalog:",
|
|
"eslint-plugin-import": "catalog:",
|
|
"eslint-plugin-jest": "catalog:",
|
|
"eslint-plugin-jsx-a11y": "catalog:",
|
|
"eslint-plugin-prettier": "catalog:",
|
|
"eslint-plugin-react": "catalog:",
|
|
"eslint-plugin-react-hooks": "catalog:",
|
|
"jest": "catalog:",
|
|
"prettier": "catalog:",
|
|
"rimraf": "catalog:",
|
|
"ts-jest": "catalog:",
|
|
"typescript": "^4.6.2"
|
|
},
|
|
"scripts": {
|
|
"clean": "rimraf dist",
|
|
"build": "tsc --noEmit false",
|
|
"watch": "tsc --noEmit false -w",
|
|
"lint": "eslint src",
|
|
"lint:fix": "eslint src --fix"
|
|
}
|
|
}
|