-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 2.71 KB
/
Copy pathpackage.json
File metadata and controls
59 lines (59 loc) · 2.71 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
{
"name": "semath",
"version": "0.19.3",
"private": false,
"type": "module",
"packageManager": "bun@1.3.14",
"bin": {
"semath-lsp": "./packages/lsp/stdio.mjs",
"semath-pack": "./packages/authoring/cli.mjs"
},
"exports": {
"./authoring": "./packages/authoring/src/index.ts",
"./lsp": "./packages/lsp/src/index.ts",
"./protocol": "./packages/protocol/src/index.ts",
"./wasmtex-adapter": "./packages/wasmtex-adapter/src/index.ts",
"./worker": "./packages/worker/src/index.ts",
"./worker-host": "./packages/worker/src/host.ts",
"./worker-runtime": "./packages/worker/src/runtime.ts",
"./wasm": "./lib/wasm/semath_wasm.js",
"./wasm-binary": "./lib/wasm/semath_wasm_bg.wasm"
},
"files": [
"examples",
"lib",
"packages",
"packs",
"README.md",
"!packages/**/*.test.ts"
],
"scripts": {
"architecture": "bun scripts/check-architecture.ts",
"budget": "bun scripts/check-budget.ts",
"budget:report": "SEMATH_BUDGET_REPORT=.artifacts/performance-budget.json bun scripts/check-budget.ts",
"budget:scale": "SEMATH_BUDGET_DOCUMENTS=500 SEMATH_BUDGET_DELTA_RUNS=10 bun scripts/check-budget.ts",
"budget:stable": "bun scripts/check-stable-budget.ts",
"check": "cargo fmt --check && cargo clippy --workspace --all-targets -- -D warnings && cargo test --workspace && bun run typecheck && bun test && bun run architecture && bun run pack:authoring && bun run conservative && bun run parity && bun run budget && bun run package:smoke",
"foundation": "bun scripts/check-foundation.ts",
"notation:conformance": "bun test scripts/testing/notation-conformance.test.ts",
"package:smoke": "bun scripts/check-package-smoke.mjs",
"pack:authoring": "bun packages/authoring/cli.mjs validate packs/*/v1.json && bun packages/authoring/cli.mjs audit-runtime packs/*/v1.json",
"parity": "bun scripts/check-parity.mjs && bun scripts/check-lifecycle.mjs",
"quality": "bun run foundation && bun run conservative && SEMATH_LIFECYCLE_FULL=1 bun run parity && bun run budget:stable && bun run package:smoke",
"test": "cargo test --workspace && bun test",
"typecheck": "bun node_modules/typescript/bin/tsc --noEmit",
"verify": "bun run check",
"conservative": "bun scripts/check-conservative.mjs",
"conservative:native": "bun scripts/check-conservative.mjs --native-only",
"release:check": "bun scripts/run-semantic-release.ts",
"corpus:collect": "python3 scripts/collect-real-documents.py",
"corpus:evaluate": "bun scripts/evaluate-real-documents.mjs"
},
"dependencies": {
"wasmtex": "github:corca-ai/wasmtex#0af094c375c281311c80b1f1f115d4362428c4ac"
},
"devDependencies": {
"@types/bun": "^1.3.14",
"typescript": "^7.0.2"
}
}