@solana/spl-token-group
Advanced tools
Comparing version 0.0.2 to 0.0.3
144
package.json
{ | ||
"name": "@solana/spl-token-group", | ||
"description": "SPL Token Group Interface JS API", | ||
"version": "0.0.2", | ||
"author": "Solana Labs Maintainers <maintainers@solanalabs.com>", | ||
"repository": "https://github.com/solana-labs/solana-program-library", | ||
"license": "Apache-2.0", | ||
"type": "module", | ||
"sideEffects": false, | ||
"engines": { | ||
"node": ">=16" | ||
}, | ||
"files": [ | ||
"lib", | ||
"src", | ||
"LICENSE", | ||
"README.md" | ||
], | ||
"publishConfig": { | ||
"access": "public" | ||
}, | ||
"main": "./lib/cjs/index.js", | ||
"module": "./lib/esm/index.js", | ||
"types": "./lib/types/index.d.ts", | ||
"exports": { | ||
"name": "@solana/spl-token-group", | ||
"description": "SPL Token Group Interface JS API", | ||
"version": "0.0.3", | ||
"author": "Solana Labs Maintainers <maintainers@solanalabs.com>", | ||
"repository": "https://github.com/solana-labs/solana-program-library", | ||
"license": "Apache-2.0", | ||
"type": "module", | ||
"sideEffects": false, | ||
"engines": { | ||
"node": ">=16" | ||
}, | ||
"files": [ | ||
"lib", | ||
"src", | ||
"LICENSE", | ||
"README.md" | ||
], | ||
"publishConfig": { | ||
"access": "public" | ||
}, | ||
"main": "./lib/cjs/index.js", | ||
"module": "./lib/esm/index.js", | ||
"types": "./lib/types/index.d.ts", | ||
"require": "./lib/cjs/index.js", | ||
"import": "./lib/esm/index.js" | ||
}, | ||
"peerDependencies": { | ||
"@solana/web3.js": "^1.91.1" | ||
}, | ||
"dependencies": { | ||
"@solana/codecs": "2.0.0-preview.2", | ||
"@solana/spl-type-length-value": "0.1.0" | ||
}, | ||
"devDependencies": { | ||
"@solana/web3.js": "^1.91.1", | ||
"@types/chai": "^4.3.14", | ||
"@types/mocha": "^10.0.6", | ||
"@types/node": "^20.11.30", | ||
"@typescript-eslint/eslint-plugin": "^7.3.1", | ||
"@typescript-eslint/parser": "^7.3.1", | ||
"chai": "^5.1.0", | ||
"eslint": "^8.57.0", | ||
"eslint-config-prettier": "^9.1.0", | ||
"eslint-plugin-prettier": "^5.1.3", | ||
"eslint-plugin-require-extensions": "^0.1.1", | ||
"gh-pages": "^6.1.1", | ||
"mocha": "^10.3.0", | ||
"prettier": "^3.2.5", | ||
"shx": "^0.3.4", | ||
"ts-node": "^10.9.2", | ||
"tslib": "^2.3.1", | ||
"typedoc": "^0.25.12", | ||
"typescript": "^5.4.3" | ||
}, | ||
"scripts": { | ||
"build": "tsc --build --verbose tsconfig.all.json", | ||
"clean": "shx rm -rf lib **/*.tsbuildinfo || true", | ||
"deploy": "npm run deploy:docs", | ||
"deploy:docs": "npm run docs && gh-pages --dest token-group/js --dist docs --dotfiles", | ||
"docs": "shx rm -rf docs && typedoc && shx cp .nojekyll docs/", | ||
"fmt": "prettier --write '{*,**/*}.{ts,tsx,js,jsx,json}'", | ||
"lint": "prettier --check '{*,**/*}.{ts,tsx,js,jsx,json}' && eslint --max-warnings 0 .", | ||
"lint:fix": "npm run fmt && eslint --fix .", | ||
"nuke": "shx rm -rf node_modules package-lock.json || true", | ||
"postbuild": "shx echo '{ \"type\": \"commonjs\" }' > lib/cjs/package.json", | ||
"reinstall": "npm run nuke && npm install", | ||
"release": "npm run clean && npm run build", | ||
"test": "mocha test", | ||
"watch": "tsc --build --verbose --watch tsconfig.all.json" | ||
} | ||
} | ||
"exports": { | ||
"types": "./lib/types/index.d.ts", | ||
"require": "./lib/cjs/index.js", | ||
"import": "./lib/esm/index.js" | ||
}, | ||
"scripts": { | ||
"build": "tsc --build --verbose tsconfig.all.json", | ||
"clean": "shx rm -rf lib **/*.tsbuildinfo || true", | ||
"deploy": "npm run deploy:docs", | ||
"deploy:docs": "npm run docs && gh-pages --dest token-group/js --dist docs --dotfiles", | ||
"docs": "shx rm -rf docs && typedoc && shx cp .nojekyll docs/", | ||
"fmt": "prettier --write '{*,**/*}.{ts,tsx,js,jsx,json}'", | ||
"lint": "prettier --check '{*,**/*}.{ts,tsx,js,jsx,json}' && eslint --max-warnings 0 .", | ||
"lint:fix": "npm run fmt && eslint --fix .", | ||
"nuke": "shx rm -rf node_modules package-lock.json || true", | ||
"postbuild": "shx echo '{ \"type\": \"commonjs\" }' > lib/cjs/package.json", | ||
"reinstall": "npm run nuke && npm install", | ||
"release": "npm run clean && npm run build", | ||
"test": "mocha test", | ||
"watch": "tsc --build --verbose --watch tsconfig.all.json" | ||
}, | ||
"peerDependencies": { | ||
"@solana/web3.js": "^1.91.6" | ||
}, | ||
"dependencies": { | ||
"@solana/codecs": "2.0.0-preview.2", | ||
"@solana/spl-type-length-value": "0.1.0" | ||
}, | ||
"devDependencies": { | ||
"@solana/web3.js": "^1.91.6", | ||
"@types/chai": "^4.3.14", | ||
"@types/mocha": "^10.0.6", | ||
"@types/node": "^20.12.7", | ||
"@typescript-eslint/eslint-plugin": "^7.7.0", | ||
"@typescript-eslint/parser": "^7.7.0", | ||
"chai": "^5.1.0", | ||
"eslint": "^8.57.0", | ||
"eslint-config-prettier": "^9.1.0", | ||
"eslint-plugin-prettier": "^5.1.3", | ||
"eslint-plugin-require-extensions": "^0.1.1", | ||
"gh-pages": "^6.1.1", | ||
"mocha": "^10.4.0", | ||
"prettier": "^3.2.5", | ||
"shx": "^0.3.4", | ||
"ts-node": "^10.9.2", | ||
"tslib": "^2.3.1", | ||
"typedoc": "^0.25.13", | ||
"typescript": "^5.4.5" | ||
} | ||
} |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
Deprecated
MaintenanceThe maintainer of the package marked it as deprecated. This could indicate that a single version should not be used, or that the package is no longer maintained and any new vulnerabilities will not be fixed.
Found 1 instance in 1 package
New author
Supply chain riskA new npm collaborator published a version of the package for the first time. New collaborators are usually benign additions to a project, but do indicate a change to the security surface area of a package.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
64031
45
1
1