-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
89 lines (89 loc) · 2.4 KB
/
Copy pathpackage.json
File metadata and controls
89 lines (89 loc) · 2.4 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
83
84
85
86
87
88
89
{
"name": "anyflow-cli",
"description": "CLI for AnyFlow operations",
"version": "1.1.2",
"main": "dist/cli.js",
"bin": {
"anyflow": "dist/cli.js",
"anyflow-dev": "dist/cli.js"
},
"engines": {
"node": "^20"
},
"scripts": {
"test": "echo \"Warn: no test specified\" && exit 0",
"start": "node dist/cli.js help",
"anyflow": "node dist/cli.js",
"build:dev": "webpack --env ENV=development",
"build:staging": "webpack --env ENV=staging",
"build:prod": "webpack --env ENV=production",
"publish:dev": "npm run build:dev && npm publish --tag dev",
"publish:staging": "npm run build:staging && npm publish --tag beta",
"publish:prod": "npm run build:prod && npm publish --tag latest",
"lint": "eslint 'src/**/*.{ts,js}'",
"prepublishOnly": "npm run build:prod",
"version:check": "node dist/version-check.js"
},
"homepage": "https://anyflow.pro",
"keywords": [
"anyflowm",
"web3",
"web 3",
"smart-contracts",
"smart contracts",
"erc721",
"erc20",
"hardhat",
"deploy",
"nft",
"token",
"solidity",
"solana",
"evm"
],
"author": "AnyflowLabs",
"license": "ISC",
"dependencies": {
"@bugsnag/js": "^7.22.4",
"@bugsnag/plugin-express": "^7.19.0",
"@types/adm-zip": "^0.5.6",
"@types/lodash": "^4.17.13",
"@types/semver": "^7.5.8",
"adm-zip": "^0.5.16",
"async-mutex": "^0.5.0",
"axios": "^1.7.7",
"chalk": "^4.1.2",
"commander": "^12.1.0",
"dotenv": "^16.4.5",
"form-data": "^4.0.1",
"lodash": "^4.17.21",
"open": "^10.1.0",
"pkg-dir": "^8.0.0",
"semver": "^7.5.4"
},
"devDependencies": {
"@eslint/compat": "^1.2.4",
"@eslint/eslintrc": "^3.2.0",
"@eslint/js": "^9.16.0",
"@types/mocha": "^10.0.9",
"@types/node": "^22.5.3",
"@types/openurl": "^1.0.3",
"@types/pkg-dir": "^2.0.1",
"@typescript-eslint/eslint-plugin": "^8.18.0",
"@typescript-eslint/parser": "^8.18.0",
"cross-env": "^7.0.3",
"dotenv-webpack": "^8.1.0",
"eslint": "^9.16.0",
"eslint-import-resolver-typescript": "^3.7.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^7.2.1",
"globals": "^15.13.0",
"ts-loader": "^9.5.1",
"ts-node": "^10.9.2",
"typescript": "^5.6.3",
"webpack": "^5.97.1",
"webpack-cli": "^5.1.4",
"webpack-shebang-plugin": "^1.1.8"
}
}