forked from nextellarlabs/nextellar
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
82 lines (82 loc) · 2.09 KB
/
package.json
File metadata and controls
82 lines (82 loc) · 2.09 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
{
"name": "nextellar",
"version": "1.0.4",
"type": "module",
"bin": {
"nextellar": "dist/bin/nextellar.js"
},
"scripts": {
"build": "npx tsc -p tsconfig.build.json",
"start": "ts-node bin/nextellar.ts",
"test": "cross-env NODE_OPTIONS=\"--experimental-vm-modules --no-warnings\" jest",
"clean": "rimraf dist",
"prepublishOnly": "npm run clean && npm run build"
},
"engines": {
"node": ">=20.0.0"
},
"description": "One-step CLI toolkit to bootstrap production-ready Next.js + Stellar applications.",
"keywords": [
"stellar",
"blockchain",
"nextjs",
"scaffold",
"cli",
"dapp",
"starter",
"kit"
],
"author": "Nextellar Labs",
"license": "MIT",
"homepage": "https://nextellar.dev",
"repository": {
"type": "git",
"url": "git+https://github.com/nextellarlabs/nextellar.git"
},
"bugs": {
"url": "https://github.com/nextellarlabs/nextellar/issues"
},
"files": [
"dist",
"src/templates",
"README.md",
"LICENSE"
],
"dependencies": {
"@stellar/stellar-sdk": "^14.4.3",
"@clack/prompts": "^0.11.0",
"commander": "^14.0.0",
"execa": "^9.6.0",
"fs-extra": "^11.3.0",
"gradient-string": "^3.0.0",
"ora": "^8.2.0",
"picocolors": "^1.1.1"
},
"devDependencies": {
"@babel/core": "^7.28.0",
"@babel/preset-env": "^7.28.0",
"@babel/preset-typescript": "^7.27.1",
"@creit.tech/stellar-wallets-kit": "^1.9.5",
"@testing-library/jest-dom": "^6.6.4",
"@testing-library/react": "^16.3.0",
"@types/commander": "^2.12.0",
"@types/fs-extra": "^11.0.4",
"@types/gradient-string": "^1.1.6",
"@types/jest": "^30.0.0",
"@types/node": "^24.1.0",
"@types/node-fetch": "^2.6.13",
"@types/react": "^18.3.28",
"babel-jest": "^30.0.5",
"cross-env": "^10.0.0",
"jest": "^30.0.5",
"jest-environment-jsdom": "^30.0.5",
"msw": "^2.10.4",
"node-fetch": "^2.7.0",
"rimraf": "^6.1.2",
"ts-jest": "^29.4.1",
"ts-node": "^10.9.2",
"typescript": "^5.9.2",
"undici": "^6.21.3",
"web-streams-polyfill": "^4.1.0"
}
}