-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 2.62 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 2.62 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
53
54
55
56
57
{
"name": "dao-browser",
"private": true,
"description": "A Chromium-based browser with vertical tab sidebar",
"type": "module",
"scripts": {
"dev": "npm run rebuild && npm run start:debug",
"website": "cd website && npm run dev",
"import": "tsx scripts/cli.ts import",
"import:force": "tsx scripts/cli.ts import --force",
"export": "tsx scripts/cli.ts export",
"build": "tsx scripts/cli.ts build",
"build:debug": "tsx scripts/cli.ts build --debug",
"build:release": "npm run import && tsx scripts/cli.ts build",
"start": "open 'engine/src/out/dao/Dao.app' --args --use-mock-keychain",
"start:debug": "'engine/src/out/dao-debug/Dao Debug.app/Contents/MacOS/Dao Debug' --use-mock-keychain --enable-logging=stderr --log-level=2",
"start:debug:view": "'engine/src/out/dao-debug/Dao Debug.app/Contents/MacOS/Dao Debug' --use-mock-keychain --enable-ui-devtools=9223 --enable-logging=stderr --v=1",
"start:little": "open -a \"$(pwd)/engine/src/out/dao-debug/Dao Debug.app\" 'https://bing.com' --args --use-mock-keychain",
"package": "tsx scripts/cli.ts package",
"package:zip": "tsx scripts/cli.ts package --zip",
"package:adhoc": "tsx scripts/cli.ts package --sign",
"package:signed": "tsx scripts/cli.ts package --sign-id",
"package:release": "tsx scripts/cli.ts package --sign-id --notarize --staple",
"setup": "tsx scripts/cli.ts download && npm run import",
"rebuild": "npm run import && npm run build:debug",
"test": "npm run lint:lit && tsx scripts/cli.ts build --debug --target browser_tests && engine/src/out/dao-debug/browser_tests --gtest_filter=\"Dao*\"",
"test:webui": "vitest run",
"test:webui:watch": "vitest",
"lint:lit": "python3 scripts/lint-lit-reactive-fields.py",
"vendor": "tsx scripts/cli.ts vendor",
"vendor:check": "tsx scripts/cli.ts vendor --check",
"sparkle:fetch": "tsx scripts/cli.ts sparkle fetch",
"sparkle:keygen": "tsx scripts/cli.ts sparkle keygen",
"sparkle:sign": "tsx scripts/cli.ts sparkle sign",
"upload:release": "tsx scripts/cli.ts upload",
"release": "tsx scripts/cli.ts release",
"release:minor": "tsx scripts/cli.ts release --bump minor",
"release:major": "tsx scripts/cli.ts release --bump major"
},
"devDependencies": {
"@types/fs-extra": "^11.0.4",
"@types/node": "^22.13.0",
"@vitest/ui": "^4.1.6",
"jsdom": "^29.1.1",
"typescript": "^5.7.0",
"vitest": "^4.1.6"
},
"dependencies": {
"@mozilla/readability": "^0.6.0",
"chalk": "^5.4.1",
"commander": "^13.1.0",
"fs-extra": "^11.3.0",
"glob": "^11.0.1",
"tsx": "^4.19.0"
},
"license": "MIT"
}