-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.21 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.21 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
{
"name": "stellar-quest",
"version": "1.0.0",
"description": "A JavaScript implementation of Stellar Quest challenges to help developers learn the Stellar ecosystem through hands-on coding exercises.",
"main": "index.js",
"scripts": {
"start": "node src/level-01/1_create_account.js",
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "echo \"Linting not configured yet\"",
"level1": "node src/level-01/1_create_account.js",
"level2": "node src/level-02/1_account_merge.js"
},
"keywords": [
"stellar",
"blockchain",
"cryptocurrency",
"tutorial",
"education",
"javascript",
"sdk",
"fintech",
"defi",
"xlm"
],
"author": "Your Name <your.email@example.com>",
"license": "ISC",
"repository": {
"type": "git",
"url": "https://github.com/yourusername/stellar-quest.git"
},
"bugs": {
"url": "https://github.com/yourusername/stellar-quest/issues"
},
"homepage": "https://github.com/yourusername/stellar-quest#readme",
"engines": {
"node": ">=20.0.0"
},
"dependencies": {
"axios": "^1.12.2",
"stellar-sdk": "^13.3.0"
},
"devDependencies": {},
"files": [
"src/",
"README.md",
"LICENSE"
]
}