forked from cNikolaou/scaf
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.05 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
52
{
"name": "@cnikolaou/scaf",
"version": "0.1.5",
"description": "",
"main": "dist/index.js",
"scripts": {
"start": "node dist/run.js",
"copy": "node dist/copy.js"
},
"bin": {
"scaf": "./dist/copy.js",
"scaf-run": "./dist/run.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/cNikolaou/scaf.git"
},
"author": "Christos Nikolaou",
"license": "MIT",
"bugs": {
"url": "https://github.com/cNikolaou/scaf/issues"
},
"prettier": {
"printWidth": 100,
"tabWidth": 4,
"semi": true,
"singleQuote": true,
"trailingComma": "all"
},
"_moduleAliases": {
"@cnikolaou/scaf": "dist"
},
"homepage": "https://github.com/cNikolaou/scaf#readme",
"files": [
"dist/",
"examples/",
"src/",
"environment.d.ts",
"LICENSE",
"README.md"
],
"devDependencies": {
"@types/node": "^20.3.2",
"module-alias": "^2.2.3",
"typescript": "^5.1.5"
},
"dependencies": {
"@mysten/sui.js": "^0.36.0",
"dotenv": "^16.3.1",
"fs-extra": "^11.1.1"
}
}