-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 1.74 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
53
54
55
56
57
58
59
60
{
"name": "create-universal-contract",
"version": "0.0.7",
"description": "CLI tool for creating universal smart contracts on ZetaChain",
"main": "index.js",
"bin": {
"create-universal-contract": "./dist/index.js"
},
"scripts": {
"build": "yarn tsc",
"lint:fix": "npm run lint:js:fix",
"lint:js:fix": "eslint --ext .js,.ts . --fix",
"lint:js": "eslint --ext .js,.ts .",
"lint": "npm run lint:js",
"main": "npx tsx src/index.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/zeta-chain/create-universal-contract.git"
},
"files": [
"dist"
],
"keywords": [],
"author": "",
"license": "ISC",
"type": "commonjs",
"bugs": {
"url": "https://github.com/zeta-chain/create-universal-contract/issues"
},
"homepage": "https://github.com/zeta-chain/create-universal-contract#readme",
"dependencies": {
"clear": "^0.1.0",
"commander": "^13.1.0",
"fs-extra": "^11.3.0",
"inquirer": "^12.3.2",
"marked": "^15.0.6",
"marked-terminal": "^7.2.1",
"node-fetch": "^3.3.2",
"simple-git": "^3.27.0"
},
"devDependencies": {
"@types/clear": "^0.1.4",
"@types/fs-extra": "^11.0.4",
"@types/marked-terminal": "^6.1.1",
"@typescript-eslint/eslint-plugin": "^5.59.0",
"@typescript-eslint/parser": "^8.21.0",
"eslint": "^8.42.0",
"eslint-config-prettier": "^10.0.1",
"eslint-import-resolver-typescript": "^3.7.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-prefer-arrow": "^1.2.3",
"eslint-plugin-prettier": "^5.2.3",
"eslint-plugin-simple-import-sort": "^12.1.1",
"eslint-plugin-sort-keys-fix": "^1.1.2",
"eslint-plugin-typescript-sort-keys": "^3.3.0",
"prettier": "^3.4.2",
"typescript": "^5.7.3"
}
}