123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475 |
- {
- "name": "@solana-program/token",
- "version": "0.6.0",
- "description": "JavaScript client for the Token program",
- "sideEffects": false,
- "module": "./dist/src/index.mjs",
- "main": "./dist/src/index.js",
- "types": "./dist/types/index.d.ts",
- "type": "commonjs",
- "exports": {
- ".": {
- "types": "./dist/types/index.d.ts",
- "import": "./dist/src/index.mjs",
- "require": "./dist/src/index.js"
- }
- },
- "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",
- "prepublishOnly": "pnpm build"
- },
- "publishConfig": {
- "access": "public",
- "registry": "https://registry.npmjs.org"
- },
- "license": "Apache-2.0",
- "repository": {
- "type": "git",
- "url": "git+https://github.com/solana-program/token.git"
- },
- "bugs": {
- "url": "https://github.com/solana-program/token/issues"
- },
- "homepage": "https://github.com/solana-program/token#readme",
- "peerDependencies": {
- "@solana/kit": "^3.0"
- },
- "devDependencies": {
- "@ava/typescript": "^4.1.0",
- "@solana-program/system": "^0.8.0",
- "@solana/eslint-config-solana": "^3.0.3",
- "@solana/kit": "^3.0",
- "@types/node": "^24",
- "@typescript-eslint/eslint-plugin": "^7.16.1",
- "@typescript-eslint/parser": "^7.16.1",
- "ava": "^6.1.3",
- "eslint": "^8.57.0",
- "prettier": "^3.3.3",
- "rimraf": "^5.0.5",
- "tsup": "^8.1.2",
- "typedoc": "^0.25.12",
- "typescript": "^5.5.3"
- },
- "ava": {
- "nodeArguments": [
- "--no-warnings"
- ],
- "typescript": {
- "compile": false,
- "rewritePaths": {
- "test/": "dist/test/"
- }
- }
- },
- "packageManager": "pnpm@9.1.0"
- }
|