forked from rootMUD/create-move-dapp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.02 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
{
"name": "create-move-dapp",
"description": "a starter kit for dapp developers to build rootmup application",
"version": "0.0.8",
"license": "Apache-2.0",
"author": "rootMUD",
"keywords": [
"create move dapp",
"create aptos app",
"rootMUD",
"aptos"
],
"bin": {
"create-apt-app": "./dist/index.js"
},
"scripts": {
"clean": "rm -rf dist",
"build": "npm run clean && tsc && cp -r templates dist/templates",
"dev": "npm run build && node dist/index.js",
"prepublish": "npm run build && npm publish"
},
"files": [
"dist"
],
"type": "module",
"dependencies": {
"kolorist": "^1.8.0",
"prompts": "^2.4.2",
"typescript": "^4.7.4",
"user": "^0.0.0"
},
"devDependencies": {
"@types/node": "^20.5.0"
},
"repository": {
"type": "git",
"url": "https://github.com/rootMUD/create-apt-dapp"
},
"homepage": "https://github.com/rootMUD/create-apt-dapp/blob/main/README.md",
"bugs": {
"url": "https://github.com/rootMUD/create-apt-dapp/issues"
}
}