-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.38 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
{
"name": "bitcoin-progress-chrome-extension",
"version": "1.0.0",
"description": "bitcoin progress chrome extension",
"main": "index.mjs",
"directories": {
"test": "tests"
},
"scripts": {
"dev": "vite dev",
"build": "vite build",
"preview": "vite preview",
"check": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json",
"check:watch": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json --watch",
"test": "vitest",
"test:ui": "vitest --ui",
"test:run": "vitest run"
},
"repository": {
"type": "git",
"url": "git+https://github.com/deevolutionism/bitcoin-halvening-chrome-ext.git"
},
"keywords": [
"bitcoin",
"halving",
"halvening",
"chrome",
"extension",
"cryptocurrency",
"blockchain"
],
"author": "Gentry Demchak",
"license": "MIT",
"bugs": {
"url": "https://github.com/deevolutionism/bitcoin-halvening-chrome-ext/issues"
},
"homepage": "https://github.com/deevolutionism/bitcoin-halvening-chrome-ext#readme",
"devDependencies": {
"@sveltejs/adapter-auto": "^2.0.0",
"@sveltejs/kit": "^1.5.0",
"@types/bn.js": "^5.1.1",
"happy-dom": "^9.10.0",
"svelte": "^3.54.0",
"svelte-check": "^3.0.1",
"tslib": "^2.4.1",
"typescript": "^5.0.0",
"vite": "^4.2.0",
"vitest": "^0.30.1"
},
"type": "module",
"dependencies": {
"bn.js": "^5.2.1"
}
}