-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
101 lines (101 loc) · 3.36 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
98
99
100
101
{
"name": "@fleek-platform/cli",
"version": "3.8.2",
"bin": {
"fleek": "bin/index.js"
},
"main": "dist/cli.js",
"types": "./dist/cli.d.ts",
"scripts": {
"build": "pnpm clean:dist && pnpm transpile && pnpm bundle && cp -r ./src/templates ./dist",
"build:ci": "pnpm run build",
"bundle": "ts-node -r dotenv/config bundle.ts",
"changeset:add": "pnpm exec changeset",
"changeset:status": "pnpm exec changeset status",
"changeset:version": "pnpm exec changeset version",
"clean": "pnpm \"/^clean:.*/\"",
"clean:dist": "rm -rf dist",
"clean:generated": "rm -rf generated",
"clean:node": "rm -rf node_modules",
"format": "npx @biomejs/biome format --write --changed ./src",
"format:check": "pnpm exec biome format ./src",
"format:unsafe": "pnpm exec biome check --write --unsafe ./src",
"increaseVersion": "pnpm version prerelease --preid dev",
"lint": "pnpm exec biome lint --write --changed --no-errors-on-unmatched ./src",
"lint:check": "pnpm exec biome lint ./src",
"release": "pnpm publish --access=public --no-git-checks",
"scripts:replace-env-vars": "node -r dotenv/config ./.scripts/replaceKeys.js",
"transpile": "tsc -p tsconfig.json && pnpm scripts:replace-env-vars",
"test": "vitest run --dir src",
"test:coverage": "vitest run --dir src --coverage",
"test:watch": "vitest --dir src",
"tsc": "tsc --noEmit",
"watch": "tsc --watch"
},
"dependencies": {
"@aws-sdk/client-lambda": "^3.449.0",
"@fleek-platform/functions-esbuild-config": "^0.0.19",
"@web-std/file": "^3.0.2",
"ansi-escapes": "^3.0.1",
"as-table": "^1.0.55",
"aws4": "^1.13.0",
"axios": "^1.3.4",
"boxen": "5.1.2",
"chalk": "^4.1.2",
"cli-progress": "^3.12.0",
"commander": "^9.4.1",
"conf": "^10.2.0",
"dotenv": "^16.4.5",
"eciesjs": "0.4.7",
"esbuild": "^0.21.4",
"files-from-path": "^1.0.0",
"glob": "^8.1.0",
"hash-wasm": "^4.11.0",
"importx": "^0.5.0",
"lodash-es": "^4.17.21",
"multiformats": "^9.9.0",
"nanoid": "^3.3.4",
"native-fetch": "^4.0.2",
"ora": "^3.4.0",
"press-any-key": "^0.1.1",
"prompts": "^2.4.2",
"semver": "^7.3.8",
"ts-node": "10.9.1",
"undici": "^6.21.0",
"unique-names-generator": "^4.7.1",
"update-notifier-cjs": "^5.1.6"
},
"devDependencies": {
"@biomejs/biome": "^1.8.3",
"@changesets/cli": "^2.27.6",
"@fleek-platform/errors": "^2.7.0",
"@fleek-platform/sdk": "^3.5.4",
"@fleek-platform/tester": "^2.12.1",
"@fleek-platform/utils-gateways": "^0.1.12",
"@fleek-platform/utils-github": "^0.1.0",
"@fleek-platform/utils-ipfs": "^0.4.4",
"@fleek-platform/utils-ipns": "^0.1.13",
"@fleek-platform/utils-validation": "^2.4.0",
"@tsconfig/node16": "^16.1.3",
"@types/ansi-escapes": "3.0.1",
"@types/cli-progress": "^3.11.5",
"@types/eslint": "8.56.2",
"@types/eslint-scope": "3.7.7",
"@types/estree": "1.0.5",
"@types/glob": "^8.0.1",
"@types/lodash": "^4.14.191",
"@types/lodash-es": "^4.17.12",
"@types/prompts": "^2.4.2",
"@types/semver": "^7.3.13",
"@types/update-notifier": "^6.0.8",
"@vitest/coverage-v8": "1.3.1",
"concurrently": "^7.6.0",
"mock-stdin": "^1.0.0",
"typescript": "4.9.3",
"vitest": "1.3.1",
"vitest-mock-process": "^1.0.4"
},
"engines": {
"node": ">=18.18.2"
}
}