-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
120 lines (120 loc) · 3.26 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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
{
"name": "@nexus-wallet/nexus",
"version": "0.0.0",
"description": "An UTxO friendly wallet extension for CKB",
"private": true,
"engines": {
"node": ">=18.14",
"npm": ">=9.4"
},
"workspaces": [
"packages/*",
"e2e",
"examples/*"
],
"devDependencies": {
"@auto-it/core": "10.44.0",
"@auto-it/magic-zero": "10.43.0",
"@auto-it/npm": "10.44.0",
"@auto-it/protected-branch": "10.44.0",
"@auto-it/released": "10.44.0",
"@auto-it/upload-assets": "10.45.0",
"@babel/preset-env": "7.20.2",
"@babel/preset-react": "7.18.6",
"@babel/preset-typescript": "7.18.6",
"@types/jest": "29.5.1",
"@types/lodash.times": "4.3.7",
"@typescript-eslint/eslint-plugin": "5.58.0",
"@typescript-eslint/parser": "5.58.0",
"concat-md": "0.5.1",
"cross-env": "7.0.3",
"eslint": "8.38.0",
"eslint-config-react-app": "7.0.1",
"eslint-plugin-import": "2.27.5",
"husky": "8.0.3",
"jest": "29.5.0",
"jest-environment-jsdom": "29.5.0",
"lerna": "6.6.1",
"lint-staged": "13.2.1",
"npm-run-all": "4.1.5",
"prettier": "2.8.8",
"rimraf": "4.4.1",
"semver": "7.4.0",
"ts-jest": "29.0.5",
"ts-node": "10.9.1",
"typedoc": "0.23.26",
"typedoc-plugin-markdown": "3.14.0",
"typescript": "4.9.5"
},
"scripts": {
"prepare": "husky install",
"build": "run-s build:libs build:extension-chrome",
"build:nexus": "echo -e '[DEPRECATED]: please migrate to build:libs' && npm run build:libs",
"build:libs": "lerna run build --ignore '@nexus-wallet/extension-chrome'",
"build:extension-chrome": "npm run build -w @nexus-wallet/extension-chrome",
"test": "jest",
"e2e": "npm run test -w=@nexus-wallet/e2e",
"start": "npm run start -w @nexus-wallet/extension-chrome",
"lint": "eslint 'packages/*/{src,__tests__}/**/*.{js,ts,jsx,tsx}'",
"check": "npm run check:types",
"check:types": "lerna run check:types --parallel",
"clean": "rimraf packages/*/lib"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ckb-js/nexus.git"
},
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/ckb-js/nexus/issues"
},
"homepage": "https://github.com/ckb-js/nexus#readme",
"lint-staged": {
"**/*": [
"prettier --write --ignore-unknown"
],
"**/*.{js,jsx,ts,tsx}": [
"npx eslint"
],
"packages/protocol/**/*": [
"npm run build:docs -w @nexus-wallet/protocol",
"prettier --write",
"git add docs/rpc.md"
]
},
"auto": {
"plugins": [
"magic-zero",
"./scripts/update-version.ts",
"./scripts/build-extension.ts",
"protected-branch",
[
"upload-assets",
[
"packages/extension-chrome/nexus.zip"
]
],
[
"npm",
{
"exact": true
}
],
"released"
],
"labels": [
{
"name": "breaking-minor",
"description": "Major version zero (0.y.z) is for initial development. Anything MAY change at any time.",
"changelogTitle": "🔨 Breaking Minor Change",
"releaseType": "minor"
},
{
"name": "dependency-update",
"changelogTitle": "🔩 Dependency Updates",
"releaseType": "none"
}
]
}
}