-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 2.23 KB
/
Copy pathpackage.json
File metadata and controls
52 lines (52 loc) · 2.23 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
49
50
51
52
{
"name": "igloo-chrome",
"version": "0.3.0",
"private": true,
"type": "module",
"scripts": {
"prepare:workspace": "bash ../../scripts/test-prebuild.sh ensure chrome-runtime",
"prepare:e2e": "bash ../../scripts/test-prebuild.sh ensure chrome home demo",
"build:ui": "npm --prefix ../igloo-ui run build",
"build:app": "node ./scripts/build.mjs",
"build:app:fast": "npm run prepare:workspace && npm run build:app",
"dev:raw": "node ./scripts/build.mjs",
"dev": "npm run prepare:workspace && npm run dev:raw",
"build": "npm run prepare:workspace && npm run build:app",
"build:browser-wasm": "node ./scripts/sync-bridge-wasm.mjs",
"typecheck:local": "bunx tsc --noEmit",
"typecheck": "npm run prepare:workspace && npm run typecheck:local",
"test:unit:raw": "vitest run",
"test:unit:fast": "npm run prepare:workspace && npm run typecheck:local && npm run test:unit:raw",
"test:unit": "npm run prepare:workspace && npm run typecheck:local && npm run test:unit:raw",
"test:e2e:raw": "npm --prefix ../../test run test:e2e:igloo-chrome",
"test:e2e": "npm run prepare:e2e && FROSTR_TEST_PREPARED=1 npm run test:e2e:raw",
"test:ci": "npm run prepare:e2e && FROSTR_TEST_PREPARED=1 npm run typecheck:local && npm run test:unit:raw && npm run test:e2e:raw && npm run build:app",
"package": "node ./scripts/package-release.mjs",
"release:candidate": "npm run prepare:e2e && FROSTR_TEST_PREPARED=1 npm run typecheck:local && npm run build:app && npm run test:unit:raw && npm run test:e2e:raw && npm run package"
},
"dependencies": {
"igloo-shared": "file:../igloo-shared",
"igloo-ui": "file:../igloo-ui",
"lucide-react": "^0.453.0",
"nostr-tools": "^2.17.2",
"react": "^18.3.1",
"react-dom": "^18.3.1"
},
"devDependencies": {
"@playwright/test": "^1.54.2",
"@scure/base": "^1.2.6",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@types/node": "^24.10.1",
"@types/react": "^18.3.5",
"@types/react-dom": "^18.3.0",
"@types/ws": "^8.18.1",
"esbuild": "^0.25.0",
"jsdom": "^28.1.0",
"postcss": "^8.4.47",
"tailwindcss": "^3.4.14",
"typescript": "^5.5.4",
"vitest": "^4.0.18",
"ws": "^8.18.3"
}
}