-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 2.34 KB
/
Copy pathpackage.json
File metadata and controls
76 lines (76 loc) · 2.34 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
{
"name": "forge-compiler",
"version": "14.2.0",
"private": true,
"description": "An explainable FORGE language compiler, deterministic stack VM, retro browser workbench, and agent-grade CLI.",
"license": "MIT",
"homepage": "https://0thernes.github.io/forge-compiler/",
"repository": {
"type": "git",
"url": "git+https://github.com/0thernes/forge-compiler.git"
},
"bugs": {
"url": "https://github.com/0thernes/forge-compiler/issues"
},
"bin": {
"forge": "./bin/forge.mjs"
},
"type": "module",
"scripts": {
"dev": "vite",
"build": "vite build",
"preview": "vite preview",
"forge": "node ./bin/forge.mjs",
"lint": "eslint . --max-warnings=0",
"format": "prettier --write .",
"format:check": "prettier --check .",
"check:docs": "node scripts/verify-docs.mjs",
"check:package": "node scripts/verify-cli-package.mjs",
"pack:cli": "node scripts/pack-cli.mjs --pack-destination .",
"check:artifact": "node scripts/verify-artifact.mjs dist",
"verify:metadata": "node scripts/verify-release.mjs --metadata-only",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"verify:mutation": "node scripts/verify-mutation-sensitivity.mjs",
"verify:quality": "npm run format:check && npm run lint && npm run check:docs && npm run verify:metadata && npm run check:package && npm run test:coverage && npm run verify:mutation",
"verify": "npm run verify:quality && npm run build && npm run check:artifact"
},
"engines": {
"node": "^24.0.0",
"npm": ">=11 <12"
},
"devEngines": {
"runtime": {
"name": "node",
"version": "24.18.0",
"onFail": "warn"
},
"packageManager": {
"name": "npm",
"version": "^11.0.0",
"onFail": "error"
}
},
"packageManager": "npm@11.18.0",
"dependencies": {
"react": "19.2.8",
"react-dom": "19.2.8"
},
"devDependencies": {
"@eslint/js": "10.0.1",
"@testing-library/jest-dom": "7.0.0",
"@testing-library/react": "16.3.2",
"@vitejs/plugin-react": "6.0.4",
"@vitest/coverage-v8": "4.1.10",
"ajv": "8.20.0",
"eslint": "10.7.0",
"eslint-plugin-react-hooks": "7.1.1",
"eslint-plugin-react-refresh": "0.5.3",
"globals": "17.7.0",
"jsdom": "29.1.1",
"prettier": "3.9.6",
"vite": "8.1.5",
"vitest": "4.1.10"
}
}