67 lines
2.3 KiB
JSON
67 lines
2.3 KiB
JSON
{
|
|
"private": true,
|
|
"name": "@ztemi/svelte-on-solana-wallet-adapter",
|
|
"author": "Svelte on Solana",
|
|
"repository": "https://github.com/naxdy/wallet-adapter",
|
|
"license": "Apache-2.0",
|
|
"type": "module",
|
|
"workspaces": {
|
|
"packages": [
|
|
"packages/*"
|
|
],
|
|
"nohoist": [
|
|
"**/@babel/preset-env",
|
|
"**/@babel/preset-env/**",
|
|
"**/babel-loader",
|
|
"**/babel-loader/**",
|
|
"**/webpack",
|
|
"**/webpack/**"
|
|
]
|
|
},
|
|
"engines": {
|
|
"node": ">= 14"
|
|
},
|
|
"publishConfig": {
|
|
"access": "public"
|
|
},
|
|
"scripts": {
|
|
"preinstall": "npx only-allow pnpm",
|
|
"clean": "lerna run clean",
|
|
"build": "lerna run build",
|
|
"test": "lerna run test",
|
|
"publish": "lerna publish from-package",
|
|
"deploy": "yarn deploy:docs && yarn deploy:example",
|
|
"deploy:docs": "yarn docs && gh-pages --dist docs --dotfiles",
|
|
"deploy:example": "gh-pages --dist packages/starter/example/out --dest example --dotfiles",
|
|
"docs": "shx rm -rf docs && NODE_OPTIONS=--max_old_space_size=8192 typedoc && shx cp ./{.nojekyll,wallets.png} docs/",
|
|
"fmt": "prettier --write '{*,**/*}.{js,ts,jsx,tsx,json}'",
|
|
"lint": "eslint --ext .ts . && prettier --check '{*,**/*}.{js,ts,jsx,tsx,json}'",
|
|
"lint:fix": "eslint --fix --ext .ts . && yarn fmt",
|
|
"nuke": "shx rm -rf {.,packages/*}/{node_modules,yarn.lock}"
|
|
},
|
|
"devDependencies": {
|
|
"@babel/eslint-parser": "^7.27.0",
|
|
"@types/eslint": "^8.56.12",
|
|
"@types/eslint-plugin-prettier": "^3.1.3",
|
|
"@types/node": "^16.18.126",
|
|
"@types/prettier": "^2.7.3",
|
|
"@typescript-eslint/eslint-plugin": "^5.62.0",
|
|
"@typescript-eslint/parser": "^5.62.0",
|
|
"babel-eslint": "^10.1.0",
|
|
"eslint": "^7.32.0",
|
|
"eslint-config-prettier": "^8.10.0",
|
|
"eslint-config-react-app": "^7.0.1",
|
|
"eslint-plugin-prettier": "^4.2.1",
|
|
"gh-pages": "^3.2.3",
|
|
"lerna": "^4.0.0",
|
|
"prettier": "^2.8.8",
|
|
"shx": "^0.3.4",
|
|
"tslib": "^2.8.1",
|
|
"typedoc": "^0.22.18",
|
|
"typescript": "~4.7.4",
|
|
"typescript-esm": "^2.0.0"
|
|
},
|
|
"dependencies": {
|
|
"svelte2tsx": "^0.5.23"
|
|
}
|
|
}
|