-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.5 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.5 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
{
"name": "@solana/mosaic-cli",
"version": "0.1.0",
"description": "Command-line interface for managing Token-2022 tokens with extensions",
"repository": {
"type": "git",
"url": "https://github.com/solana-foundation/mosaic",
"directory": "packages/cli"
},
"type": "module",
"main": "./dist/index.js",
"bin": {
"mosaic": "./dist/index.js"
},
"files": [
"dist"
],
"scripts": {
"build": "tsc -b",
"dev": "tsc --watch",
"start": "node dist/index.js",
"test": "echo 'Tests will be implemented'",
"lint": "eslint src --ext .ts",
"lint:fix": "eslint src --ext .ts --fix",
"type-check": "tsc --noEmit",
"clean": "rm -rf dist"
},
"dependencies": {
"@solana/mosaic-sdk": "workspace:*",
"@solana/kit": "^5.0.0",
"@solana-program/system": "^0.7.0",
"@solana-program/token-2022": "^0.5.0",
"@token-acl/sdk": "^0.2.7",
"@token-acl/abl-sdk": "^0.2.0",
"chalk": "^5.3.0",
"commander": "^12.0.0",
"ora": "^8.0.1"
},
"devDependencies": {
"@types/node": "^20.0.0",
"@typescript-eslint/eslint-plugin": "^8.34.0",
"@typescript-eslint/parser": "^8.34.0",
"eslint": "^9.32.0",
"tsx": "^4.0.0",
"typescript": "^5.0.0"
},
"keywords": [
"solana",
"token-2022",
"extensions",
"cli",
"stablecoin",
"arcade-token"
]
}