-
Notifications
You must be signed in to change notification settings - Fork 20
/
package.json
45 lines (45 loc) · 1.24 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
{
"name": "talisman-connect",
"description": "Connect your DApp to Ethereum and Polkadot wallets with Talisman Connect.",
"version": "0.0.0",
"private": true,
"engines": {
"node": ">=18.0.0"
},
"packageManager": "[email protected]+sha512.beb9e2a803db336c10c9af682b58ad7181ca0fbd0d4119f2b33d5f2582e96d6c0d93c85b23869295b765170fbdaa92890c0da6ada457415039769edf3c959efe",
"scripts": {
"prepare": "husky",
"prepublishOnly": "pnpm build",
"build": "pnpm run --recursive --stream build",
"dev": "pnpm run --recursive --stream --parallel dev",
"lint": "pnpm run --recursive --stream lint",
"format": "prettier --write \"**/*.{ts,tsx,css,md}\""
},
"devDependencies": {
"@ianvs/prettier-plugin-sort-imports": "^4.4.0",
"husky": "^9.1.6",
"lint-staged": "^15.2.10",
"prettier": "^3.3.3"
},
"prettier": {
"plugins": [
"@ianvs/prettier-plugin-sort-imports"
],
"importOrder": [
"<TYPES>^(node:)",
"<BUILT_IN_MODULES>",
"",
"<TYPES>",
"<THIRD_PARTY_MODULES>",
"",
"<TYPES>^[.]",
"^[.]"
],
"importOrderTypeScriptVersion": "4.8.2",
"semi": false,
"singleQuote": true
},
"lint-staged": {
"*.{ts,tsx,css,md}": "prettier --write"
}
}