-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
42 lines (42 loc) · 1.38 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
{
"private": true,
"scripts": {
"build": "turbo build",
"dev": "turbo dev --no-cache --continue",
"lint": "biome check .",
"lint:fix": "biome check . --apply",
"clean": "turbo clean && rm -rf node_modules temp",
"format": "prettier --write \"**/*.{ts,tsx,md}\"",
"changeset": "changeset",
"release": "turbo build --filter=docs^... && changeset publish",
"test": "turbo test",
"version-packages": "turbo run build lint test",
"publish-packages": "turbo run build lint test && changeset version && changeset publish",
"documentation": "turbo run docs && mkdir -p temp && cp packages/*/temp/* temp/ && api-documenter markdown -i temp -o docs",
"demo": "turbo run demo"
},
"devDependencies": {
"@biomejs/biome": "^1.8.1",
"@lukso/data-provider-ipfs-http-client": "workspace:*",
"@lukso/data-provider-pinata": "workspace:*",
"@microsoft/api-documenter": "~7.21.5",
"@microsoft/api-extractor": "^7.47.0",
"@types/node": "^20.14.5",
"cross-env": "^7.0.3",
"dotenv": "^16.4.5",
"formdata-node": "^6.0.3",
"jest": "^29.7.0",
"jest-presets": "workspace:*",
"source-map-support": "^0.5.21",
"tsup": "^8.1.0",
"turbo": "^2.0.4",
"zx": "^7.2.3"
},
"packageManager": "pnpm@9.2.0",
"workspaces": [
"packages/*",
"configs/*",
"examples/astro-example"
],
"name": "tools-data-providers"
}