123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566 |
- {
- "name": "@solana-program/token",
- "version": "0.0.0",
- "description": "JavaScript client for the Token program",
- "sideEffects": false,
- "module": "./dist/src/index.js",
- "main": "./dist/src/index.cjs",
- "types": "./dist/types/src/index.d.ts",
- "type": "module",
- "exports": {
- ".": {
- "types": "./dist/types/src/index.d.ts",
- "import": "./dist/src/index.js",
- "require": "./dist/src/index.cjs"
- }
- },
- "files": [
- "./dist/src",
- "./dist/types"
- ],
- "scripts": {
- "build": "rimraf dist && tsup && tsc -p ./tsconfig.declarations.json",
- "build:docs": "typedoc",
- "test": "ava",
- "lint": "eslint --ext js,ts,tsx src",
- "lint:fix": "eslint --fix --ext js,ts,tsx src",
- "format": "prettier --check src test",
- "format:fix": "prettier --write src test"
- },
- "publishConfig": {
- "access": "public",
- "registry": "https://registry.npmjs.org"
- },
- "license": "MIT",
- "peerDependencies": {
- "@solana/web3.js": "tp3"
- },
- "devDependencies": {
- "@ava/typescript": "^4.1.0",
- "@solana/eslint-config-solana": "^3.0.0",
- "@solana/web3.js": "tp3",
- "@solana/webcrypto-ed25519-polyfill": "tp3",
- "@typescript-eslint/eslint-plugin": "^7.3.1",
- "@typescript-eslint/parser": "^7.3.1",
- "ava": "^6.1.2",
- "eslint": "^8.57.0",
- "prettier": "^3.2.5",
- "rimraf": "^5.0.5",
- "tsup": "^8.0.2",
- "typedoc": "^0.25.12",
- "typedoc-plugin-missing-exports": "^2.2.0",
- "typescript": "^5.4.2"
- },
- "ava": {
- "require": [
- "@solana/webcrypto-ed25519-polyfill"
- ],
- "typescript": {
- "compile": false,
- "rewritePaths": {
- "test/": "dist/test/"
- }
- }
- },
- "packageManager": "pnpm@8.2.0"
- }
|