-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
108 lines (108 loc) · 3.81 KB
/
Copy pathpackage.json
File metadata and controls
108 lines (108 loc) · 3.81 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
{
"name": "axis",
"version": "2.6.7",
"private": true,
"license": "AGPL-3.0-only",
"author": "jango_blockchained",
"type": "module",
"scripts": {
"dev": "vite",
"dev:datafeed": "bun packages/datafeed/src/index.ts",
"build": "bun scripts/sync-versions.mjs && vite build",
"sync:versions": "bun scripts/sync-versions.mjs",
"preview": "vite preview",
"test": "bun test --max-concurrency=1 tests/ worker/tests/",
"test:cli": "bun --cwd packages/cli test",
"typecheck": "bunx tsc --noEmit",
"check:versions": "bun scripts/check-versions.mjs",
"lint": "biome check .",
"lint:fix": "biome check --write --unsafe .",
"prepare": "git config core.hooksPath .githooks",
"test:unit": "bun test tests/",
"test:coverage": "bun test --coverage --coverage-reporter=lcov --coverage-reporter=text --coverage-dir=coverage tests/ worker/tests/",
"test:coverage:gate": "bun run test:coverage && bun scripts/check-coverage.mjs 95",
"test:security": "bun test tests/security/",
"test:bench": "AXIS_BENCH=1 bun test tests/bench/",
"test:e2e": "playwright test",
"test:e2e:smoke": "playwright test --grep @smoke",
"test:e2e:critical": "playwright test --grep \"@smoke|@critical\"",
"test:all": "bun run test:coverage:gate && bun run test:security",
"desktop:dev": "tauri dev",
"desktop:build": "tauri build",
"desktop:info": "tauri info",
"axis": "bun packages/cli/bin/axis.js",
"axis:install": "bun packages/cli/bin/axis.js install",
"axis:doctor": "bun packages/cli/bin/axis.js doctor",
"axis:setup": "bun packages/cli/bin/axis.js setup",
"axis:deploy": "bun packages/cli/bin/axis.js deploy",
"axis:health": "bun packages/cli/bin/axis.js health",
"docker:bake": "make docker-bake",
"docker:up": "make docker-up",
"docker:down": "make docker-down",
"docker:health": "make docker-health",
"docker:smoke": "make docker-smoke",
"docker:push": "make docker-push",
"capture:screenshots": "bun scripts/capture-screenshots.ts",
"capture:fix": "bun scripts/capture-fix.ts",
"capture:1080p": "bun scripts/capture-screenshots.ts --viewport=1920x1080 --dpr=2 --skip-gifs",
"capture:1440p": "bun scripts/capture-screenshots.ts --viewport=2560x1440 --dpr=2 --out=docs/images/2560x1440 --skip-gifs --skip-cli --skip-mobile"
},
"dependencies": {
"@codemirror/autocomplete": "^6.18.0",
"@codemirror/commands": "^6.7.0",
"@codemirror/language": "^6.10.8",
"@codemirror/search": "^6.5.8",
"@codemirror/state": "^6.5.0",
"@codemirror/theme-one-dark": "^6.1.2",
"@codemirror/view": "^6.36.0",
"@tauri-apps/api": "^2.11.1",
"@tauri-apps/plugin-dialog": "^2.7.2",
"lightweight-charts": "^5.2.0",
"lucide-solid": "^1.27.0",
"solid-js": "^1.9.5"
},
"devDependencies": {
"@biomejs/biome": "^2.5.12",
"@playwright/test": "^1.51.0",
"@tailwindcss/vite": "^4.1.0",
"@tauri-apps/cli": "^2.11.4",
"@types/bun": "latest",
"prettier": "^3.9.6",
"tailwindcss": "^4.1.0",
"typescript": "^5.8.0",
"vite": "^6.3.0",
"vite-plugin-solid": "^2.11.0"
},
"description": "AXIS — open charting PWA: CEX OHLCV, drawings, on-chain overlays, and Pine Script™ via PYNE (local API, Cloudflare Worker, or Pyodide). Part of HOOX: hoox.sh/axis",
"keywords": [
"axis",
"hoox",
"pyne",
"charting",
"pwa",
"trading",
"cryptocurrency",
"ohlcv",
"technical-analysis",
"drawings",
"on-chain",
"defi",
"pine-script",
"solidjs",
"cloudflare-workers",
"tauri",
"pyodide",
"lightweight-charts",
"vite",
"typescript",
"bun"
],
"repository": {
"type": "git",
"url": "https://github.com/hoox-sh/axis.git"
},
"bugs": {
"url": "https://github.com/hoox-sh/axis/issues"
},
"homepage": "https://hoox.sh/axis"
}