-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
97 lines (97 loc) · 2.29 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
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
{
"name": "migrate-to-w3up",
"version": "1.0.3",
"description": "Migrate data from old web3.storage to w3up",
"main": "src/index.js",
"exports": {
".": "./src/index.js",
"./from-w32023": "./src/from-w32023.js"
},
"type": "module",
"scripts": {
"build": "npm run tsc",
"prepare": "npm run build",
"test": "node --test",
"tsc": "tsc --build",
"lint": "npx eslint *.js"
},
"author": "Alan Shaw",
"license": "MIT",
"eslintConfig": {
"extends": [
"eslint:recommended",
"plugin:@typescript-eslint/recommended",
"plugin:jsdoc/recommended-typescript-flavor"
],
"plugins": [
"jsdoc",
"@typescript-eslint"
],
"rules": {
"jsdoc/no-undefined-types": [
1,
{
"definedTypes": [
"AsyncIterable"
]
}
],
"jsdoc/require-returns": "off",
"jsdoc/require-yields": "off",
"@typescript-eslint/no-unused-vars": [
"warn",
{
"args": "none"
}
]
},
"env": {
"node": true,
"es2020": true
},
"parser": "@typescript-eslint/parser",
"parserOptions": {
"project": [
"./tsconfig.json"
],
"ecmaVersion": 14,
"sourceType": "module"
}
},
"dependencies": {
"@inquirer/password": "^1.1.14",
"@inquirer/prompts": "^3.3.0",
"@ipld/car": "^5.2.6",
"@ipld/dag-pb": "^4.0.8",
"@ipld/unixfs": "^2.1.2",
"@ucanto/validator": "^9.0.1",
"@web3-storage/access": "^18.1.1",
"@web3-storage/capabilities": "^13.0.0",
"@web3-storage/pail": "^0.4.0",
"@web3-storage/w3up-client": "^12.1.0",
"carstream": "^2.0.0",
"inquirer": "^9.2.15",
"ipfs-unixfs-exporter": "^13.4.0",
"multiformats": "^13.0.1",
"ndjson-readablestream": "^1.1.0",
"parallel-transform-web": "^1.0.1",
"uint8arrays": "^5.0.2",
"web3.storage": "^4.5.5",
"@ucanto/client": "^9.0.0",
"@ucanto/principal": "^9.0.0",
"@ucanto/server": "^9.0.1",
"@ucanto/transport": "^9.0.2"
},
"bin": {
"migrate-to-w3up": "./bin/migrate-to-w3up.js"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^6.19.1",
"eslint-plugin-jsdoc": "^48.0.4",
"typescript": "^5.3.3"
},
"engineStrict": true,
"engines": {
"node": ">=18"
}
}