-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
49 lines (49 loc) · 1.71 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
{
"name": "@cosmostation/extension-client",
"version": "0.1.15",
"description": "chrome extension cosmostation client",
"scripts": {
"tsc": "tsc",
"patch": "yarn version --patch --no-git-tag-version",
"postpatch": "yarn run build",
"minor": "yarn version --minor --no-git-tag-version",
"postminor": "yarn run build",
"major": "yarn version --major --no-git-tag-version",
"postmajor": "yarn run build",
"patch:prerelease": "yarn version --prerelease --preid alpha --no-git-tag-version",
"postpatch:prerelease": "yarn run build",
"prebuild": "rimraf dist",
"build": "tsc",
"postbuild": "cpy package.json dist && cpy README.md dist",
"publish:latest": "cd dist && yarn publish --access public",
"publish:alpha": "cd dist && yarn publish --tag alpha --access public"
},
"main": "index.js",
"types": "index.d.ts",
"author": "ong-ar",
"email": "[email protected]",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/cosmostation/cosmostation-chrome-extension-client"
},
"dependencies": {},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.5.0",
"@typescript-eslint/parser": "^5.5.0",
"cpy-cli": "^4.1.0",
"eslint": "^8.3.0",
"eslint-config-airbnb": "^19.0.2",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^8.3.0",
"eslint-import-resolver-typescript": "^2.5.0",
"eslint-plugin-import": "^2.25.3",
"eslint-plugin-import-name": "^1.2.3",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-react": "^7.27.1",
"eslint-plugin-react-hooks": "^4.3.0",
"eslint-plugin-simple-import-sort": "^7.0.0",
"prettier": "^2.5.0",
"typescript": "^4.5.2"
}
}