-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 3.64 KB
/
Copy pathpackage.json
File metadata and controls
79 lines (79 loc) · 3.64 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
{
"name": "stdnum-workspace",
"version": "0.0.0",
"private": true,
"license": "MIT",
"workspaces": [
"packages/*"
],
"scripts": {
"build": "bun run codegen:check && bun run --cwd packages/stdnum build",
"build:ts": "bun run --cwd packages/stdnum build:js && bun run --cwd packages/stdnum-wasm build:js",
"build:wasm": "bun run --cwd packages/stdnum-wasm build && bun run performance:wasm-size",
"typecheck": "tsc -p tsconfig.json && bun run --cwd packages/stdnum typecheck && bun run --cwd packages/stdnum-wasm typecheck",
"test": "bun test packages/stdnum/src/__test__",
"smoke:native": "node scripts/native-smoke.mjs",
"smoke:browser": "node scripts/browser-smoke.mjs",
"smoke:wasm": "node scripts/wasm-smoke.mjs",
"smoke:pack": "node scripts/pack-smoke.mjs",
"readme:check": "node scripts/readme-smoke.mjs",
"performance": "node scripts/performance-gate.mjs",
"performance:wasm-size": "node scripts/selected-wasm-size-gate.mjs",
"performance:oracles": "node scripts/oracle-performance-gate.mjs",
"codegen": "bun scripts/generate-public-surface.ts",
"codegen:check": "bun scripts/generate-public-surface.ts --check",
"oracle": "bun scripts/oracle.ts --mode=gate",
"oracle:gate": "bun scripts/oracle.ts --mode=gate",
"oracle:survey": "bun scripts/oracle.ts --mode=survey",
"rust:fmt": "cargo ci-fmt",
"rust:fmt:check": "cargo ci-fmt",
"rust:lint": "cargo ci-clippy",
"rust:hawk": "cargo +1.97.1 hawk check --target-dir target/hawk -D warnings -A hawk::dead_public -A hawk::unnecessary_public",
"rust:dylint": "cargo ci-dylint",
"rust:test": "cargo ci-test && cargo ci-test-doc",
"rust:deny": "cargo ci-deny",
"rust:snapshot-check": "cargo ci-snapshot",
"rust:check": "bun run rust:fmt && bun run rust:lint && bun run rust:dylint && bun run rust:test",
"lint": "bun --bun oxlint -c oxlint.config.ts --report-unused-disable-directives-severity=error --deny-warnings --type-aware .",
"lint:fix": "bun --bun oxlint -c oxlint.config.ts --type-aware --fix .",
"format": "oxfmt . \"!.ai/**\" \"!.agents/**\" \"!.claude/**\" \"!AGENTS.md\" \"!CLAUDE.md\" \"!GEMINI.md\"",
"format:check": "oxfmt --check . \"!.ai/**\" \"!.agents/**\" \"!.claude/**\" \"!AGENTS.md\" \"!CLAUDE.md\" \"!GEMINI.md\"",
"version:check": "node scripts/version-sync.mjs check",
"version:sync": "node scripts/version-sync.mjs sync",
"changeset": "changeset",
"changeset:check": "bun scripts/check-changeset.ts",
"changeset:check:test": "bun test scripts/changeset-policy.test.ts",
"changeset:version": "changeset version && node scripts/sync-changeset-version.mjs && bun install",
"sync-ai": "bash scripts/sync-ai-skills.sh",
"sync-ai:check": "bash scripts/sync-ai-skills.sh --check",
"secrets:check:staged": "bash scripts/check-staged-secrets.sh",
"hooks:install": "lefthook install",
"hooks:uninstall": "lefthook uninstall"
},
"devDependencies": {
"@brazilian-utils/brazilian-utils": "^2.3.0",
"@changesets/changelog-github": "^1.0.0",
"@changesets/cli": "^3.0.0",
"@stll/oxlint-config": "0.6.0",
"@stll/typescript-config": "0.6.0",
"@types/node": "^26.2.0",
"bun-types": "^1.3.14",
"fast-check": "^4.9.0",
"fast-luhn": "^2.0.2",
"iban": "^0.0.14",
"ibantools": "^4.5.4",
"jsvat": "^2.5.4",
"lefthook": "^2.1.10",
"luhn": "^2.4.1",
"oxfmt": "^0.63.0",
"oxlint": "1.78.0",
"oxlint-tsgolint": "7.0.2001",
"rut.js": "^2.1.0",
"stdnum": "^1.12.6",
"tsdown": "0.22.14",
"typescript": "7.0.2",
"validate-polish": "^2.1.40",
"vite": "8.2.1"
},
"packageManager": "bun@1.3.14"
}