-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
87 lines (87 loc) · 5.15 KB
/
Copy pathpackage.json
File metadata and controls
87 lines (87 loc) · 5.15 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
{
"name": "hsqlite-editor",
"description": "A local-first, offline-capable SQLite editor distributed as one standalone HTML file.",
"private": true,
"type": "module",
"version": "0.4.0",
"license": "MIT",
"author": "hSQLite Editor contributors",
"homepage": "https://helbertm.github.io/hSQLite-Editor/",
"repository": {
"type": "git",
"url": "git+https://github.com/helbertm/hSQLite-Editor.git"
},
"bugs": {
"url": "https://github.com/helbertm/hSQLite-Editor/issues"
},
"engines": {
"node": ">=20"
},
"scripts": {
"bump:patch": "node scripts/bump-version.mjs",
"build": "node scripts/build.mjs",
"build:release": "node scripts/build-release.mjs",
"generate:release-checksums": "node scripts/release-assets.mjs",
"generate:linux-metadata": "node scripts/sync-linux-release-metadata.mjs",
"generate:sbom": "node scripts/generate-sbom.mjs",
"generate:runtime-components": "node scripts/generate-runtime-components.mjs",
"serve:artifact": "node scripts/serve-artifact.mjs",
"stage:linux": "node scripts/stage-linux-release.mjs",
"validate:approval": "node scripts/validate-approval-gates.mjs",
"validate:full": "node scripts/validate-full.mjs",
"validate:full:ci": "node scripts/validate-full.mjs --expect-clean-index",
"validate:github-controls": "node scripts/validate-github-controls.mjs",
"validate:static": "npm run validate:modules && npm run validate:source && npm run validate:i18n && npm run validate:accessibility && npm run validate:privacy && npm run validate:runtime-components && npm run validate:sbom && npm run validate:workflows",
"validate:linux": "node scripts/validate-linux-package.mjs",
"validate:linux-metadata": "node scripts/sync-linux-release-metadata.mjs --check",
"validate:linux:system": "bash scripts/validate-linux-system-tools.sh",
"validate:modules": "node scripts/validate-module-graph.mjs",
"validate:source": "node scripts/validate-source.mjs",
"validate:i18n": "node scripts/validate-i18n.mjs",
"validate:accessibility": "node scripts/validate-accessibility.mjs",
"validate:dependencies": "node scripts/validate-dependencies.mjs",
"validate:privacy": "node scripts/validate-privacy-docs.mjs",
"validate:runtime-components": "node scripts/generate-runtime-components.mjs --check",
"validate:sbom": "node scripts/generate-sbom.mjs --check",
"validate:workflows": "node scripts/validate-workflows.mjs",
"test:unit": "node --test scripts/contract-tests/*.test.mjs",
"test:contract": "npm run test:unit && npm run validate:settings-import",
"validate:artifact:structure": "node scripts/validate-artifact.mjs",
"validate:runtime": "node scripts/validate-runtime-smoke.mjs --suite=cross-surface",
"validate:runtime:database": "node scripts/validate-runtime-smoke.mjs --suite=database-session",
"validate:runtime:library": "node scripts/validate-runtime-smoke.mjs --suite=library-settings",
"validate:runtime:execution-grid": "node scripts/validate-runtime-smoke.mjs --suite=execution-grid",
"validate:runtime:sql-map": "node scripts/validate-runtime-smoke.mjs --suite=sql-map-population",
"validate:runtime:features": "npm run validate:runtime:database && npm run validate:runtime:library && npm run validate:runtime:execution-grid && npm run validate:runtime:sql-map",
"validate:runtime:all": "node scripts/validate-runtime-smoke.mjs --suite=all",
"validate:artifact": "npm run validate:artifact:structure && npm run validate:runtime:all",
"validate:browser:backlog": "node scripts/validate-browser-backlog.mjs",
"validate:browser:quality": "node scripts/validate-browser-quality.mjs",
"validate:native:chromium": "node scripts/validate-native-chromium.mjs",
"validate:quality:offline": "npm run validate:static && npm run test:contract && npm run build && npm run build:release && npm run validate:linux && npm run validate:approval",
"quality:docker": "bash scripts/run-codex-quality.sh",
"quality:docker:update": "bash scripts/run-codex-quality.sh bootstrap",
"quality:security:docker": "bash scripts/run-codex-quality.sh security",
"validate:release:structure": "node scripts/validate-release.mjs && node scripts/validate-artifact.mjs dist/hSQLite-Editor-v$npm_package_version.html",
"validate:release:runtime": "node scripts/validate-runtime-smoke.mjs dist/hSQLite-Editor-v$npm_package_version.html --suite=all",
"validate:release": "npm run validate:release:structure && npm run validate:release:runtime",
"validate:release-assets": "node scripts/release-assets.mjs --check",
"validate:repository": "node scripts/validate-repository-state.mjs",
"validate:settings-import": "node scripts/validate-settings-transfer.mjs",
"update-vendor": "node scripts/update-vendor.mjs"
},
"devDependencies": {
"@axe-core/playwright": "4.12.1",
"@codemirror/commands": "6.10.4",
"@codemirror/lang-sql": "6.10.0",
"@codemirror/language": "6.12.4",
"@codemirror/state": "6.7.1",
"@codemirror/view": "6.43.6",
"@lezer/highlight": "1.2.3",
"@playwright/test": "1.61.1",
"acorn": "8.17.0",
"esbuild": "0.28.1",
"snappyjs": "0.7.0",
"sql.js": "1.14.1"
}
}