-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 2.45 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 2.45 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
{
"name": "axelate-root",
"version": "0.2.0",
"private": true,
"description": "Root proxy for Axelate",
"scripts": {
"preinstall": "node .github/scripts/guard-root-install.mjs",
"dev": "node .github/scripts/workflow.mjs dev",
"dev:inspect": "node .github/scripts/workflow.mjs dev:inspect",
"dev:release-like": "node .github/scripts/workflow.mjs dev:release-like",
"build": "node .github/scripts/workflow.mjs build",
"clear": "node .github/scripts/workflow.mjs clear",
"preview": "node .github/scripts/workflow.mjs preview",
"tauri:build": "node .github/scripts/workflow.mjs tauri:build",
"release": "node .github/scripts/workflow.mjs release",
"release:checksums": "node .github/scripts/workflow.mjs release:checksums",
"release:verify-hardening": "node .github/scripts/workflow.mjs release:verify-hardening",
"run": "node .github/scripts/workflow.mjs run",
"lint": "node .github/scripts/workflow.mjs lint",
"format": "node .github/scripts/workflow.mjs format",
"format:check": "node .github/scripts/workflow.mjs format:check",
"bindings:sync": "npm --prefix src run bindings:sync",
"bindings:check": "npm --prefix src run bindings:check",
"test": "node .github/scripts/workflow.mjs test",
"test:coverage": "node .github/scripts/workflow.mjs test:coverage",
"test:coverage:all": "node .github/scripts/workflow.mjs test:coverage:all",
"rust:test:coverage": "node .github/scripts/workflow.mjs rust:test:coverage",
"rust:test:coverage:lcov": "node .github/scripts/workflow.mjs rust:test:coverage:lcov",
"test:watch": "node .github/scripts/workflow.mjs test:watch",
"typecheck": "node .github/scripts/workflow.mjs typecheck",
"doctor": "node .github/scripts/workflow.mjs doctor",
"setup": "node .github/scripts/workflow.mjs setup",
"verify": "node .github/scripts/workflow.mjs verify",
"install-deps": "node .github/scripts/workflow.mjs install-deps",
"integration:doctor": "node .github/scripts/workflow.mjs integration:doctor",
"integration:new": "node .github/scripts/workflow.mjs integration:new",
"update": "node .github/scripts/workflow.mjs update",
"prepare": "node .github/scripts/workflow.mjs prepare",
"check-size": "node .github/scripts/workflow.mjs check-size"
},
"engines": {
"node": ">=26.1.0"
}
}