123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778 |
- {
- "name": "@solana/spl-token",
- "version": "0.0.5",
- "description": "SPL Token Javascript API",
- "license": "MIT",
- "author": "Solana Maintainers <maintainers@solana.com>",
- "homepage": "https://solana.com/",
- "repository": {
- "type": "git",
- "url": "https://github.com/solana-labs/solana-program-library"
- },
- "bugs": {
- "url": "https://github.com/solana-labs/solana-program-library/issues"
- },
- "publishConfig": {
- "access": "public"
- },
- "main": "lib/index.cjs.js",
- "module": "lib/index.esm.js",
- "types": "lib/index.d.ts",
- "files": [
- "/lib",
- "/module.flow.js"
- ],
- "testnetDefaultChannel": "v1.3.1",
- "scripts": {
- "build": "rollup -c",
- "start": "babel-node cli/main.js",
- "lint": "npm run pretty && eslint .",
- "lint:fix": "npm run lint -- --fix",
- "flow": "flow",
- "flow:watch": "watch 'flow' . --wait=1 --ignoreDirectoryPattern=/doc/",
- "lint:watch": "watch 'npm run lint:fix' . --wait=1",
- "build:program": "rm client/util/store/config.json; ../../do.sh build token",
- "cluster:localnet": "rm -f .env",
- "cluster:devnet": "cp cluster-devnet.env .env",
- "cluster:testnet": "cp cluster-testnet.env .env",
- "cluster:mainnet-beta": "cp cluster-mainnet-beta.env .env",
- "localnet:update": "solana-localnet update",
- "localnet:up": "rm client/util/store/config.json; set -x; solana-localnet down; set -e; solana-localnet up",
- "localnet:down": "solana-localnet down",
- "localnet:logs": "solana-localnet logs -f",
- "pretty": "prettier --write '{,cli*/**/}*.js'"
- },
- "dependencies": {
- "@babel/runtime": "^7.10.5",
- "@solana/web3.js": "^0.64.0",
- "bn.js": "^5.0.0",
- "buffer-layout": "^1.2.0",
- "dotenv": "8.2.0",
- "mkdirp-promise": "^5.0.1"
- },
- "devDependencies": {
- "@babel/cli": "^7.10.5",
- "@babel/core": "^7.10.5",
- "@babel/node": "^7.10.5",
- "@babel/plugin-proposal-class-properties": "^7.10.4",
- "@babel/plugin-transform-runtime": "^7.10.5",
- "@babel/preset-env": "^7.10.4",
- "@babel/preset-flow": "^7.10.4",
- "@rollup/plugin-babel": "^5.1.0",
- "@rollup/plugin-commonjs": "^14.0.0",
- "babel-eslint": "^10.1.0",
- "eslint": "^7.4.0",
- "eslint-plugin-import": "^2.22.0",
- "flow-bin": "0.131.0",
- "flow-typed": "^3.2.0",
- "mz": "^2.7.0",
- "prettier": "^2.0.5",
- "rollup": "^2.23.0",
- "rollup-plugin-copy": "^3.3.0",
- "semver": "^7.0.0",
- "watch": "^1.0.2"
- },
- "engines": {
- "node": ">= 10"
- }
- }
|