forked from cosmology-tech/cosmos-kit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.66 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
{
"name": "cosmos-kit",
"version": "2.0.0",
"publishConfig": {
"access": "restricted"
},
"private": true,
"scripts": {
"commit": "git-cz",
"build": "lerna run prepare --stream",
"watch": "yarn watch",
"lint": "lerna run lint",
"format": "lerna run format",
"pretest": "yarn lint",
"test": "lerna run test",
"clear:mjs": "lerna run clean:mjs --stream",
"clear:modules": "find . -name 'node_modules' -type d -prune -print | xargs rm -rf",
"clear:packages": "find -E ./packages -iregex '.*/packages/[-0-9a-z]*/(main|module|types|build|dist|cjs|esm)' -type d -prune -print | xargs rm -rf",
"clear:wallets": "find -E ./wallets -iregex '.*/wallets/[-0-9a-z]*/(main|module|types|build|dist|cjs|esm)' -type d -prune -print | xargs rm -rf",
"clear": "yarn clear:packages && yarn clear:wallets",
"pub:beta": "lerna publish prerelease --preid beta --allow-branch beta",
"pub": "lerna publish"
},
"devDependencies": {
"@types/jest": "29.0.3",
"@types/node": "18.7.18",
"@typescript-eslint/eslint-plugin": "5.38.0",
"@typescript-eslint/parser": "5.38.0",
"eslint": "8.23.1",
"eslint-config-prettier": "8.5.0",
"eslint-plugin-prettier": "4.2.1",
"eslint-plugin-simple-import-sort": "8.0.0",
"eslint-plugin-unused-imports": "2.0.0",
"jest": "29.0.3",
"jest-in-case": "1.0.2",
"lerna": "7.1.1",
"prettier": "2.7.1",
"publish-scripts": "0.1.0",
"rimraf": "3.0.2",
"ts-jest": "29.0.1",
"typescript": "4.8.3"
},
"workspaces": [
"packages/*",
"wallets/*"
],
"repository": {
"type": "git",
"url": "https://github.com/cosmology-tech/cosmos-kit#readme"
}
}