-
Notifications
You must be signed in to change notification settings - Fork 79
/
package.json
74 lines (74 loc) · 2.56 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
{
"name": "substrate-connect",
"version": "0.1.0",
"type": "module",
"description": "A collection of libraries and tools needed to run Substrate Wasm light clients directly in the browser",
"repository": "https://github.com/paritytech/substrate-connect.git",
"author": "Parity Team <[email protected]>",
"maintainers": [
"Stefanie Doll <[email protected]>",
"Sveta Goldstein <[email protected]>",
"Raoul Millais <[email protected]>",
"Nikolaos Kontakis <[email protected]>",
"Pierre Krieger <[email protected]>",
"Josep Sobrepere <[email protected]>"
],
"license": "GPL-3.0-only",
"private": true,
"scripts": {
"downloadSpecs": "node bin/downloadSpecs.js",
"api-docs": "typedoc",
"deep-clean": "pnpm -r deep-clean && rm -rf node_modules",
"clean": "turbo run clean",
"build": "turbo run build",
"lint": "prettier --check .",
"test": "pnpm -r test",
"dev:api-docs": "concurrently -n typedoc,http-server 'nodemon -e ts --watch ./packages/connect --watch ./packages/connect-extension-protocol --exec typedoc' 'http-server _site/api'",
"dev:burnr": "pnpm --filter @substrate/burnr dev",
"dev:demo": "pnpm --filter @substrate/demo dev",
"dev:extension": "pnpm --filter @substrate/extension dev",
"format": "prettier --write .",
"prepare": "husky"
},
"lint-staged": {
"*.{js,jsx,ts,tsx,json,md}": "prettier --write"
},
"devDependencies": {
"@changesets/cli": "^2.27.7",
"@total-typescript/tsconfig": "^1.0.4",
"@types/chrome": "^0.0.270",
"@types/node": "^20.14.10",
"@types/qrcode.react": "^1.0.5",
"@types/react": "^18.3.1",
"@types/react-dom": "^18.3.1",
"@types/react-router-dom": "^5.3.3",
"@typescript-eslint/parser": "^7.11.0",
"concurrently": "^8.2.2",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-config-react-app": "^7.0.1",
"eslint-plugin-import": "^2.29.0",
"globals": "^15.9.0",
"http-server": "^14.1.1",
"husky": "^9.1.6",
"jsdom": "^24.0.0",
"lint-staged": "^15.2.10",
"nodemon": "^3.1.4",
"prettier": "^3.3.3",
"rimraf": "^6.0.1",
"tshy": "^3.0.2",
"tslib": "^2.6.2",
"turbo": "^2.1.3",
"typedoc": "^0.26.10",
"typescript": "^5.6.2",
"vite-tsconfig-paths": "^5.0.1",
"vitest": "^2.0.5"
},
"packageManager": "[email protected]+sha512.60c18acd138bff695d339be6ad13f7e936eea6745660d4cc4a776d5247c540d0edee1a563695c183a66eb917ef88f2b4feb1fc25f32a7adcadc7aaf3438e99c1",
"pnpm": {
"overrides": {
"@substrate/connect": "workspace:^",
"smoldot": "2.0.30"
}
}
}