-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 984 Bytes
/
Copy pathpackage.json
File metadata and controls
31 lines (31 loc) · 984 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
26
27
28
29
30
31
{
"name": "stellar-mint",
"version": "0.1.0",
"private": true,
"type": "module",
"description": "A 3-class teaching repo on classic Stellar asset issuance, control, and the native AMM — the Control Spectrum.",
"license": "Apache-2.0",
"engines": {
"node": ">=20"
},
"scripts": {
"bootstrap": "tsx scripts/bootstrap.ts",
"issue": "tsx scripts/issue.ts",
"reproduce:class-1": "tsx scripts/reproduce/class-1.ts",
"reproduce:class-2": "tsx scripts/reproduce/class-2.ts",
"reproduce:class-3": "tsx scripts/reproduce/class-3.ts",
"typecheck": "tsc --noEmit",
"lint": "prettier --check \"src/**/*.ts\" \"scripts/**/*.ts\" \"*.ts\"",
"format": "prettier --write \"src/**/*.ts\" \"scripts/**/*.ts\" \"*.ts\""
},
"dependencies": {
"@stellar/stellar-sdk": "^15.1.0",
"dotenv": "^16.4.5"
},
"devDependencies": {
"@types/node": "^20.14.0",
"prettier": "^3.3.3",
"tsx": "^4.19.0",
"typescript": "^5.6.3"
}
}