-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
95 lines (95 loc) · 2.36 KB
/
package.json
File metadata and controls
95 lines (95 loc) · 2.36 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
90
91
92
93
94
95
{
"name": "permalaunch",
"version": "0.0.7",
"type": "module",
"description": "Permaweb app deployment package",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"keywords": [
"permalaunch",
"arweave",
"permaweb",
"deploy",
"deployer",
"deployer-tool",
"deployment-tool-for-permaweb, arns, ar.io, Patrick Skinner"
],
"scripts": {
"build": "tsc && chmod +x ./dist/index.js",
"watch": "tsc -w",
"link": "npm link",
"test": "node --experimental-vm-modules node_modules/jest/bin/jest.js src/tests/init.test.ts --config=jest.config.mjs",
"type-check": "tsc --noEmit",
"check-size": "bundlesize",
"lint": "eslint .",
"lint:fix": "eslint \"src/**/*.ts\" --fix"
},
"bin": {
"permalaunch": "./dist/index.js"
},
"dependencies": {
"@ar.io/sdk": "^3.0.0",
"@ardrive/turbo-sdk": "^1.10.1",
"@kyvejs/sdk": "latest",
"dotenv": "^16.4.7",
"inquirer": "^12.2.0",
"mime-types": "^2.1.35",
"stream": "^0.0.3",
"ws": "^8.16.0",
"yargs": "17.7.2"
},
"overrides": {
"axios": "^1.7.8",
"@ethersproject/signing-key": "^5.7.0",
"@ethersproject/hash": "^5.7.0",
"@ethersproject/providers": "^5.7.2",
"@ethersproject/transactions": "^5.7.0",
"@ethersproject/wallet": "^5.7.0",
"elliptic": "^6.5.8",
"ws": "^8.16.0"
},
"devDependencies": {
"@eslint/config-array": "latest",
"@eslint/object-schema": "latest",
"@jest/globals": "^29.7.0",
"@types/fs-extra": "^11.0.4",
"@types/jest": "^29.5.0",
"@types/mime-types": "^2.1.4",
"@types/mock-fs": "^4.13.4",
"@types/node": "^22.10.2",
"@types/yargs": "^17.0.33",
"@typescript-eslint/eslint-plugin": "^8.18.2",
"@typescript-eslint/parser": "^8.18.2",
"bundlesize": "^0.18.2",
"eslint": "^9.17.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-simple-import-sort": "^12.1.1",
"fs-extra": "^11.2.0",
"glob": "^11.0.0",
"jest": "^29.7.0",
"jest-environment-node": "^29.7.0",
"mock-fs": "^5.4.1",
"rimraf": "^6.0.1",
"ts-jest": "^29.1.0",
"ts-node": "^10.9.1",
"typescript": "^5.7.2"
},
"repository": {
"type": "git",
"url": "git+https://github.com/pskinnertech/permalaunch.git"
},
"homepage": "https://permalaunch_patrick.ar.io",
"author": "PSkinnerTech",
"license": "MIT",
"bundlesize": [
{
"path": "./dist/**/*.js",
"maxSize": "500kB"
},
{
"path": "./dist/**/*.d.ts",
"maxSize": "50kB"
}
]
}