-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.17 KB
/
package.json
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
{
"name": "create-starknet-dapp",
"version": "0.2.7",
"type": "module",
"license": "MIT",
"author": "nlyrthiia",
"bin": {
"create-starknet-dapp": "index.js",
"starknet-dapp": "index.js",
"snd": "index.js"
},
"files": [
"index.js",
"template-*/**/*",
"dist"
],
"scripts": {
"dev": "unbuild --stub",
"build": "unbuild",
"typecheck": "tsc --noEmit",
"prepublishOnly": "npm run build"
},
"engines": {
"node": "^18.0.0 || >=20.0.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/CerberusChaos/create-starknet-dapp.git"
},
"homepage": "https://github.com/CerberusChaos/create-starknet-dapp#readme",
"devDependencies": {
"@types/minimist": "^1.2.5",
"@types/prompts": "^2.4.9",
"cross-spawn": "^7.0.3",
"kolorist": "^1.8.0",
"minimist": "^1.2.8",
"prompts": "^2.4.2",
"unbuild": "^2.0.0"
},
"dependencies": {
"typescript": "^5.3.3"
},
"description": "## Scaffolding Your First Starknet Dapp Project",
"bugs": {
"url": "https://github.com/CerberusChaos/create-starknet-dapp/issues"
},
"main": "index.js",
"keywords": [
"starknet-dapp"
]
}