-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
90 lines (90 loc) · 2.7 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
{
"name": "@fleek-platform/sdk",
"description": "Fleek Platform SDK",
"version": "3.5.3",
"main": "./dist/browser/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"default": "./dist/browser/index.js"
},
"./node": {
"types": "./dist/index.d.ts",
"default": "./dist/node/index.js"
},
"./browser": {
"types": "./dist/index.d.ts",
"default": "./dist/browser/index.js"
}
},
"files": [
"dist",
"dist/**/*",
"README.md"
],
"scripts": {
"build": "pnpm clean:dist && pnpm transpile && bun run ./build.ts",
"build:ci": "pnpm run build",
"build:types": "tsc -p tsconfig.types.json",
"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:node_modules": "rm -rf node_modules",
"format": "pnpm exec biome format --write ./src",
"format:check": "pnpm exec biome format ./src",
"format:unsafe": "pnpm exec biome check --write --unsafe ./src",
"lint": "pnpm exec biome lint --write --changed --no-errors-on-unmatched ./src",
"lint:check": "pnpm exec biome lint ./src",
"transpile": "pnpm exec tsc -p tsconfig.json",
"test": "vitest run --dir src",
"tsc": "tsc --noEmit",
"watch": "tsc --watch"
},
"dependencies": {
"@noble/hashes": "^1.4.0",
"@web-std/file": "^3.0.2",
"@web-std/form-data": "^3.0.2",
"axios": "^1.7.2",
"dotenv": "^16.0.3",
"files-from-path": "^1.0.0",
"lodash": "^4.17.21",
"luxon": "^3.3.0",
"object-traversal": "^1.0.1",
"parallel-transform-web": "^1.0.0"
},
"devDependencies": {
"@biomejs/biome": "^1.8.3",
"@changesets/cli": "^2.27.9",
"@fleek-platform/errors": "^2.7.0",
"@fleek-platform/utils-genql-client": "^0.2.2",
"@fleek-platform/utils-token": "^0.2.2",
"@jspm/core": "^2.0.1",
"@tsconfig/node16": "^16.1.3",
"@types/detect-node": "^2.0.0",
"@types/lodash": "^4.14.191",
"@types/luxon": "^3.1.0",
"@types/node": "^22.6.1",
"@types/whatwg-fetch": "^0.0.33",
"@vitest/coverage-v8": "1.3.1",
"@web3-storage/upload-client": "^17.0.1",
"bun": "^1.1.20",
"concurrently": "^7.6.0",
"decimal.js": "^10.4.3",
"esbuild": "^0.21.4",
"esbuild-plugin-polyfill-node": "^0.3.0",
"esbuild-plugins-node-modules-polyfill": "^1.6.4",
"graphql": "^16.9.0",
"import-meta-resolve": "^4.1.0",
"ipfs-http-client": "56.0.3",
"msw": "^2.5.0",
"multiformats": "^12.1.3",
"native-fetch": "^4.0.2",
"typescript": "5.6.2",
"vitest": "2.1.1"
},
"engines": {
"node": ">=18.18.2"
}
}