-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.29 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.29 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
{
"name": "inosuke",
"version": "0.2.0",
"keywords": [
"solana",
"blockchain",
"web3",
"typescript",
"spl-token",
"transaction",
"inosuke"
],
"author": "nanasi saif.ali067@gmail.com",
"license": "MIT",
"type": "module",
"description": "Solana Typescript Library",
"sideEffects": false,
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.cjs"
}
},
"files": [
"dist"
],
"scripts": {
"build": "tsup",
"prepack": "npm run build",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"lint": "tsc --noEmit"
},
"peerDependencies": {
"@solana/kit": "^6.5.0"
},
"devDependencies": {
"@solana-program/address-lookup-table": "^0.11.0",
"@solana-program/compute-budget": "^0.15.0",
"@solana-program/system": "^0.12.0",
"@solana-program/token": "^0.12.0",
"@solana/transaction-messages": "^6.9.0",
"@solana/kit": "^6.5.0",
"@types/node": "^22.0.0",
"@vitest/coverage-v8": "^2.0.0",
"tsup": "^8.0.0",
"typescript": "^5.5.0",
"vitest": "^2.0.0"
},
"engines": {
"node": ">=20"
}
}