forked from frame-labs/frame-extension
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.29 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.29 KB
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
{
"name": "ironwallet-extension",
"version": "0.0.1",
"repository": {
"type": "git",
"url": "git://github.com/rndlabs/ironwallet-extension.git"
},
"description": "IronWallet Extension",
"main": "src",
"scripts": {
"test": "pnpm run standard",
"build": "pnpm run build:with-svelte && pnpm run build:no-svelte",
"build:no-svelte": "VITE_USE_SVELTE=false vite build",
"build:with-svelte": "VITE_USE_SVELTE=true vite build",
"watch": "vite",
"serve": "vite",
"check": "svelte-check --tsconfig ./tsconfig.json --watch",
"lint": "prettier --check . && eslint .",
"format": "prettier --write ."
},
"type": "module",
"author": "Nullis Contributors",
"license": "GPL-3.0-only",
"devDependencies": {
"@sveltejs/vite-plugin-svelte": "^3.1.2",
"@tsconfig/svelte": "^5.0.4",
"@types/chrome": "^0.0.278",
"@types/eslint": "^9.6.0",
"eslint": "^9.0.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-svelte": "^2.36.0",
"globals": "^15.0.0",
"prettier": "^3.1.1",
"prettier-plugin-svelte": "^3.1.2",
"standard": "17.1.2",
"svelte": "^4.2.19",
"svelte-check": "^4.0.5",
"tslib": "^2.8.0",
"typescript": "^5.6.3",
"typescript-eslint": "^8.0.0",
"vite": "^5.4.9"
},
"dependencies": {
"eth-provider": "0.13.7",
"ethereum-provider": "0.7.7",
"events": "3.3.0"
}
}