-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathpackage.json
More file actions
124 lines (124 loc) · 3.8 KB
/
Copy pathpackage.json
File metadata and controls
124 lines (124 loc) · 3.8 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
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
{
"name": "permaweb-deploy",
"version": "3.4.3",
"description": "Permaweb App Deployment Package",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"type": "module",
"bin": {
"permaweb-deploy": "./bin/run.js"
},
"scripts": {
"clean:install": "rm -rf node_modules pnpm-lock.yaml || true && pnpm store prune && pnpm install",
"build": "vite build && tsc --emitDeclarationOnly",
"dev": "./bin/dev.js",
"test": "vitest",
"test:run": "vitest run",
"test:unit": "vitest run src",
"test:e2e": "vitest run tests/e2e",
"test:coverage": "vitest run --coverage",
"lint": "eslint . --ext .ts",
"lint:fix": "eslint . --ext .ts --fix",
"format": "prettier --write .",
"format:check": "prettier --check .",
"generate:types": "openapi-typescript tests/fixtures/upload-service.openapi.yaml -o tests/types/upload-service.ts && openapi-typescript tests/fixtures/payment-service.openapi.yaml -o tests/types/payment-service.ts",
"prepare": "husky install",
"changeset": "changeset",
"version": "changeset version",
"version:alpha": "changeset version --snapshot alpha",
"version:snapshot": "changeset version --snapshot rc",
"release": "changeset publish --tag latest",
"release:alpha": "changeset publish --tag alpha",
"release:snapshot": "changeset publish --tag rc --no-git-tag"
},
"oclif": {
"bin": "permaweb-deploy",
"dirname": "permaweb-deploy",
"commands": "./dist/commands",
"topicSeparator": " ",
"default": "interactive",
"topics": {
"deploy": {
"description": "Deploy to the permaweb"
},
"upload": {
"description": "Upload to Arweave without updating ArNS"
}
}
},
"files": [
"dist",
"bin",
"oclif.manifest.json"
],
"dependencies": {
"@ar.io/sdk": "^3.22.1",
"@ardrive/turbo-sdk": "^1.39.1",
"@dha-team/arbundles": "^1.0.4",
"@inquirer/prompts": "^7.2.0",
"@oclif/core": "^4.0.30",
"@permaweb/aoconnect": "^0.0.85",
"boxen": "^8.0.1",
"chalk": "^5.3.0",
"cli-table3": "^0.6.5",
"hyperbalance": "github:xylophonez/hyperbalance#main",
"mime-types": "^3.0.1",
"ora": "^8.1.1",
"p-limit": "^7.2.0"
},
"devDependencies": {
"@changesets/cli": "^2.27.10",
"@commitlint/cli": "^19.6.0",
"@commitlint/config-conventional": "^19.6.0",
"@oclif/prettier-config": "^0.2.1",
"@oclif/test": "^4.1.14",
"@types/mime-types": "^2.1.4",
"@types/node": "^22.10.2",
"@typescript-eslint/eslint-plugin": "^8.18.1",
"@typescript-eslint/parser": "^8.18.1",
"@vitest/coverage-v8": "^2.1.8",
"eslint": "^8.57.1",
"eslint-config-oclif": "^5.2.1",
"eslint-config-oclif-typescript": "^3.1.12",
"eslint-config-prettier": "^9.1.0",
"eslint-import-resolver-typescript": "^3.7.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-simple-import-sort": "^12.1.1",
"husky": "^9.1.7",
"lint-staged": "^16.4.0",
"msw": "^2.11.3",
"openapi-typescript": "^7.9.1",
"prettier": "^3.4.2",
"tsx": "^4.19.2",
"typescript": "^5.7.2",
"vite": "^6.0.5",
"vite-plugin-dts": "^4.3.0",
"vite-tsconfig-paths": "^5.1.4",
"vitest": "^2.1.8"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"engines": {
"node": ">=18.0.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/permaweb/permaweb-deploy.git"
},
"author": "NickJ202",
"license": "ISC",
"bugs": {
"url": "https://github.com/permaweb/permaweb-deploy/issues"
},
"homepage": "https://github.com/permaweb/permaweb-deploy#readme",
"lint-staged": {
"*.{ts,tsx}": [
"eslint --fix --max-warnings=0",
"prettier --write"
],
"*.{json,md,yml,yaml}": "prettier --write"
}
}