-
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.3 KB
/
Copy pathpackage.json
File metadata and controls
59 lines (59 loc) · 2.3 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": "aureon-language",
"version": "0.1.0",
"description": "AUREON language compiler, bytecode inspector, and unified toolchain CLI",
"license": "MIT",
"type": "module",
"bin": {
"aureon": "bin/aureon.js"
},
"files": [
"bin/",
"compiler/src/",
"conformance/",
"docs/COMPATIBILITY.md",
"docs/RELEASING.md",
"docs/REPL.md",
"docs/TOOLCHAIN.md",
"errors/",
"examples/",
"isa/",
"runtime/Cargo.lock",
"runtime/Cargo.toml",
"runtime/bin/",
"runtime/src/",
"sandbox/",
"sdk/",
"stdlib/",
"targets/",
"tools/run-conformance.js",
"CHANGELOG.md",
"LICENSE",
"README.md"
],
"scripts": {
"generate:isa": "node tools/generate-isa.js",
"generate:sandbox": "node tools/generate-sandbox.js",
"generate:errors": "node tools/generate-errors.js",
"generate:stdlib": "node tools/generate-stdlib.js",
"generate:targets": "node tools/generate-targets.js",
"check:isa": "node tools/generate-isa.js --check",
"check:sandbox": "node tools/generate-sandbox.js --check",
"check:errors": "node tools/generate-errors.js --check",
"check:stdlib": "node tools/generate-stdlib.js --check",
"check:targets": "node tools/generate-targets.js --check",
"check:sdk": "cargo fmt --manifest-path sdk/Cargo.toml -- --check && cargo clippy --manifest-path sdk/Cargo.toml -- -D warnings && cargo test --manifest-path sdk/Cargo.toml",
"test": "node --test",
"test:integration": "node --test integration/compiler-runtime.js",
"test:package": "node --test integration/package-install.js",
"test:conformance": "node tools/run-conformance.js",
"build:runtime": "cargo build --release --manifest-path runtime/Cargo.toml",
"package:release": "node tools/package-release.js",
"check": "npm run check:isa && npm run check:sandbox && npm run check:errors && npm run check:stdlib && npm run check:targets && npm run check:sdk && npm test && npm run test:integration && npm run test:conformance && npm run test:package && cargo fmt --manifest-path runtime/Cargo.toml -- --check && cargo clippy --manifest-path runtime/Cargo.toml -- -D warnings && cargo test --manifest-path runtime/Cargo.toml",
"compile": "node bin/aureon.js compile",
"aureon": "node bin/aureon.js"
},
"engines": {
"node": ">=20"
}
}