|
1 | 1 | { |
2 | 2 | "name": "@ton-community/tlb-codegen", |
3 | | - "version": "2.0.0-beta.2", |
4 | | - "description": "", |
5 | | - "main": "build/index.js", |
| 3 | + "version": "2.0.0-beta.3", |
| 4 | + "description": "TLB code generator", |
| 5 | + "files": [ |
| 6 | + "./build/*", |
| 7 | + "LICENSE", |
| 8 | + "README.md" |
| 9 | + ], |
| 10 | + "main": "./build/index.js", |
| 11 | + "module": "./build/index.js", |
| 12 | + "types": "./build/index.d.ts", |
| 13 | + "exports": { |
| 14 | + ".": { |
| 15 | + "types": "./build/index.d.ts", |
| 16 | + "import": "./build/index.js", |
| 17 | + "require": "./build/index.js", |
| 18 | + "default": "./index.js" |
| 19 | + }, |
| 20 | + "./node": { |
| 21 | + "types": "./build/node.d.ts", |
| 22 | + "import": "./build/node.js", |
| 23 | + "require": "./build/node.js", |
| 24 | + "default": "./build/node.js" |
| 25 | + } |
| 26 | + }, |
| 27 | + "typesVersions": { |
| 28 | + "*": { |
| 29 | + "*": ["*"] |
| 30 | + } |
| 31 | + }, |
| 32 | + "bin": { |
| 33 | + "tlb": "./build/cli.js" |
| 34 | + }, |
| 35 | + "publishConfig": { |
| 36 | + "access": "public" |
| 37 | + }, |
6 | 38 | "prettier": "@ton/toolchain/prettier", |
7 | 39 | "scripts": { |
8 | 40 | "lint": "eslint . --max-warnings 0", |
9 | 41 | "lint:fix": "eslint . --max-warnings 0 --fix", |
| 42 | + "test:gen": "ts-node test/generate.ts", |
10 | 43 | "test": "jest", |
11 | 44 | "build": "npm run compile", |
| 45 | + "prepublishOnly": "npm run build", |
12 | 46 | "compile": "tsc" |
13 | 47 | }, |
14 | | - "bin": { |
15 | | - "tlb": "build/main.js" |
16 | | - }, |
17 | | - "keywords": [], |
18 | | - "author": "", |
19 | | - "license": "ISC", |
| 48 | + "keywords": [ |
| 49 | + "ton", |
| 50 | + "tlb", |
| 51 | + "tl-b", |
| 52 | + "codegen", |
| 53 | + "react-native", |
| 54 | + "browser" |
| 55 | + ], |
| 56 | + "author": "TON Tech", |
| 57 | + "license": "MIT", |
20 | 58 | "devDependencies": { |
21 | 59 | "@jest/globals": "^29.7.0", |
22 | 60 | "@ton/toolchain": "github:the-ton-tech/toolchain#v1.4.0", |
|
0 commit comments