-
Notifications
You must be signed in to change notification settings - Fork 29
/
package.json
64 lines (64 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
{
"name": "@delphi-labs/shuttle-vue",
"version": "3.29.0",
"description": "Shuttle is open-source npm package designed to turn wallet connections into a plug-and-play Lego brick for Cosmos Dapps.",
"keywords": [
"dapp",
"blockchain",
"wallets",
"cosmos-sdk",
"cosmos",
"typescript",
"vue"
],
"author": "Delphi Labs (delphi-labs)",
"license": "MIT",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/delphi-labs/shuttle.git",
"directory": "packages/vue"
},
"files": [
"dist",
"LICENSE",
"README.md"
],
"scripts": {
"build": "tsup src/index.ts --format cjs --dts",
"dev": "pnpm run build --watch",
"lint": "eslint \"{**/*,*}.{js,ts,jsx,tsx}\"",
"prettier": "prettier --write \"{src,tests,example/src}/**/*.{js,ts,jsx,tsx}\"",
"test": "jest --config jestconfig.json",
"prepublishOnly": "pnpm run test && pnpm run lint"
},
"peerDependencies": {
"vue": ">=3"
},
"dependencies": {
"@delphi-labs/shuttle": "workspace:*",
"pinia": "^2.1.3",
"tslib": "^2.6.0",
"tsup": "^7.1.0",
"vue": "^3.3.4"
},
"devDependencies": {
"@swc/core": "^1.3.68",
"@types/jest": "^29.5.0",
"@typescript-eslint/eslint-plugin": "^5.40.1",
"@typescript-eslint/parser": "^5.40.1",
"@vue/test-utils": "^2.4.0",
"eslint": "^8.25.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"jest": "^29.5.0",
"jest-canvas-mock": "^2.4.0",
"jest-environment-jsdom": "^29.2.1",
"jest-resolver-enhanced": "^1.1.0",
"prettier": "^2.7.1",
"ts-jest": "^29.1.0",
"typescript": "^5.1.3",
"vite": "^4.3.9"
}
}