-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
81 lines (81 loc) · 2.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
{
"name": "10k_swap-widgets",
"version": "1.0.0",
"description": "",
"repository": {
"type": "git",
"url": "git+https://github.com/10k-swap/-10k_swap-widgets.git"
},
"author": "https://github.com/breeze98",
"license": "ISC",
"bugs": {
"url": "https://github.com/10k-swap/-10k_swap-widgets/issues"
},
"homepage": "https://github.com/10k-swap/-10k_swap-widgets#readme",
"types": "lib/index.d.ts",
"source": "./src/index.ts",
"type": "module",
"main": "./lib/index.mjs",
"module": "./lib/index.umd.cjs",
"style": "./lib/style.css",
"exports": {
".": {
"import": "./lib/index.mjs",
"require": "./lib/index.umd.cjs"
},
"./*": "./*"
},
"browserslist": "> 0.5%, last 2 versions, not dead",
"scripts": {
"serve": "cd ./example && npm run dev",
"lint": "eslint --fix --ext .ts,.tsx,.js,.vue",
"lint:fix": "eslint src/** --fix --ext .ts,.vue,.tsx",
"prettier": "prettier --write \"./**/*.{js,jsx,ts,tsx,json,css,scss,less,md}\"",
"build": "vite build",
"test": "echo \"Error: no test specified\" && exit 1"
},
"files": [
"lib"
],
"keywords": [
"swap",
"starknet"
],
"dependencies": {
"@argent/get-starknet": "^3.0",
"@ethersproject/units": "^5.6.1",
"@vueuse/core": "^9.1.0",
"bowser": "^2.11.0",
"buffer": "^6.0.3",
"clipboard": "^2.0.11",
"l0k_swap-sdk": "https://github.com/10k-swap/10k_swap-sdk.git#main",
"lodash": "^4.17.21",
"object-hash": "^3.0.0",
"starknet": "3.16.0",
"vue3-popper": "^1.5.0"
},
"devDependencies": {
"@types/lodash": "^4.14.188",
"@types/node": "^18.11.9",
"@types/object-hash": "^2.2.1",
"@types/qs": "^6.9.7",
"@typescript-eslint/eslint-plugin": "^5.42.1",
"@vitejs/plugin-vue": "^3.2.0",
"@vitejs/plugin-vue-jsx": "^2.1.1",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-vue": "^9.7.0",
"prettier": "^2.7.1",
"sass": "^1.42.1",
"typescript": "^4.4.3",
"rollup-plugin-visualizer": "^5.8.3",
"vite": "^3.2.3",
"vite-plugin-dts": "^1.7.1",
"vite-plugin-eslint": "^1.8.1",
"vite-plugin-imp": "^2.3.1",
"vue": "^3.2.16",
"vue-eslint-parser": "^9.0.3",
"vue-tsc": "^0.38.4"
}
}