forked from solana-foundation/mosaic
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.35 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.35 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
{
"name": "mosaic-token-extensions-admin",
"version": "0.1.0",
"description": "TypeScript SDK, CLI, and UI for managing standard token types on Solana (ex: Stablecoin & Arcade Tokens)",
"private": true,
"type": "module",
"scripts": {
"build": "pnpm --recursive run build",
"dev": "pnpm --recursive run dev",
"test": "pnpm --recursive run test --passWithNoTests",
"lint": "pnpm --recursive run lint",
"lint:fix": "pnpm --recursive run lint:fix",
"format": "prettier --write .",
"format:check": "prettier --check .",
"type-check": "pnpm --filter @mosaic/sdk run build && pnpm --recursive run type-check",
"clean": "pnpm --recursive run clean",
"precommit": "pnpm run format && pnpm run lint:fix",
"check": "pnpm run build && pnpm run format:check && pnpm run lint && pnpm run type-check"
},
"keywords": [
"solana",
"token-2022",
"extensions",
"stablecoin",
"arcade-token",
"typescript",
"sdk",
"cli"
],
"author": "Solana Foundation",
"license": "MIT",
"devDependencies": {
"@types/node": "^20.0.0",
"@typescript-eslint/eslint-plugin": "^8.34.0",
"@typescript-eslint/parser": "^8.34.0",
"eslint": "^9.32.0",
"prettier": "^3.0.0",
"typescript": "^5.0.0"
},
"engines": {
"node": ">=18.0.0",
"pnpm": ">=9.0.0"
},
"packageManager": "pnpm@9.10.0"
}