-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
77 lines (77 loc) · 2.59 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
{
"name": "@nixjs23n6/wallet-adapter",
"description": "Modular TypeScript wallet adapters and components for Web3 applications.",
"license": "MIT",
"private": true,
"workspaces": [
"packages/*"
],
"keywords": [
"wallet",
"wallet-adapter",
"web3",
"aptos",
"sui",
"ethereum",
"toolkit",
"typescript",
"web"
],
"repository": {
"type": "git",
"url": "git+https://github.com/nixjs/wallet-adapter.git"
},
"publishConfig": {
"access": "public"
},
"author": "nghinv (https://github.com/nixjs)",
"scripts": {
"clean": "lerna clean --yes",
"bootstrap": "lerna bootstrap --hoist",
"publish": "lerna publish",
"test": "lerna run test",
"lint": "lerna run lint",
"build": "lerna run build --include-dependencies --stream",
"prettier": "lerna run prettier",
"storybook:build": "lerna run storybook:build",
"prepare": "is-ci || husky install",
"postinstall": "lerna run postinstall",
"new-version": "lerna version --no-git-tag-version --ignore-changes @nixjs23n6/website",
"pre-publish": "run-s new-version reset commit-version",
"npm-publish:experimental": "lerna exec -- npm publish --access public --tag experimental",
"npm-publish:canary": "lerna exec -- npm publish --access public --tag canary",
"publish:experimental": "run-s pre-publish npm-publish:experimental",
"publish:canary": "run-s pre-publish npm-publish:canary"
},
"devDependencies": {
"@commitlint/cli": "^17.0.3",
"@commitlint/config-conventional": "^17.0.3",
"@types/eslint": "^8.4.3",
"@types/eslint-plugin-prettier": "^3.1.0",
"@types/lodash-es": "^4.17.6",
"@types/node": "^18.0.0",
"@types/prettier": "^2.6.3",
"@types/react": "^18.0.14",
"@typescript-eslint/eslint-plugin": "^5.30.0",
"@typescript-eslint/parser": "^5.30.0",
"eslint": "^8.18.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"husky": "^8.0.0",
"is-ci": "^3.0.1",
"lerna": "^5.6.2",
"npm-run-all": "^4.1.5",
"prettier": "^2.7.1",
"rimraf": "^3.0.2",
"typescript": "^4.9.4"
},
"engines": {
"node": ">= 14"
},
"version": "1.0.0",
"bugs": {
"url": "https://github.com/nixjs/wallet-adapter/issues"
},
"homepage": "https://github.com/nixjs/wallet-adapter#readme",
"main": "commitlint.config.js"
}