-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
25 lines (25 loc) · 811 Bytes
/
package.json
File metadata and controls
25 lines (25 loc) · 811 Bytes
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
{
"name": "stellarforge",
"version": "0.1.0",
"private": true,
"description": "The developer CLI and scaffolding toolkit for Soroban smart contracts on Stellar.",
"license": "MIT",
"packageManager": "pnpm@9.15.1",
"engines": {
"node": ">=20"
},
"scripts": {
"build": "pnpm --filter @stellarforge/cli build",
"dev": "pnpm --filter @stellarforge/cli dev",
"lint": "pnpm -r --if-present lint",
"format": "prettier --write \"**/*.{ts,tsx,js,jsx,json,md}\"",
"format:check": "prettier --check \"**/*.{ts,tsx,js,jsx,json,md}\"",
"test": "pnpm -r --if-present test",
"templates:test": "cargo test",
"templates:fmt": "cargo fmt --check",
"templates:clippy": "cargo clippy --all-targets -- -D warnings"
},
"devDependencies": {
"prettier": "^3.4.2"
}
}