-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 2 KB
/
package.json
File metadata and controls
70 lines (70 loc) · 2 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
{
"name": "@tsonic/monorepo",
"version": "0.0.1",
"description": "TypeScript to C# to NativeAOT compiler",
"type": "module",
"private": true,
"scripts": {
"build": "tsonic build",
"build:quick": "./scripts/build/all.sh --no-format",
"clean": "./scripts/build/clean.sh",
"clean:all": "./scripts/build/clean.sh --all",
"test": "npm run test:frontend && npm run test:backend && npm run test:emitter && npm run test:cli",
"test:backend": "cd packages/backend && npm test --",
"test:bindings-semantics": "bash scripts/bindings-semantics/verify-migrated-families.sh",
"test:cli": "cd packages/cli && npm test --",
"test:frontend": "cd packages/frontend && npm test --",
"test:emitter": "cd packages/emitter && npm test --",
"lint": "./scripts/build/lint.sh",
"lint:fix": "./scripts/build/lint.sh --fix",
"format": "./scripts/build/format.sh",
"format:check": "./scripts/build/format.sh --check",
"typecheck": "tsc -b",
"dev": "tsonic run"
},
"workspaces": [
"packages/*"
],
"devDependencies": {
"@eslint/js": "^9.37.0",
"@tsonic/js": "^10.0.48",
"@types/chai": "5.2.2",
"@types/mocha": "10.0.10",
"@types/node": "20.14.0",
"@typescript-eslint/eslint-plugin": "8.43.0",
"@typescript-eslint/parser": "8.43.0",
"chai": "5.3.3",
"esbuild": "^0.27.0",
"eslint": "9.35.0",
"globals": "15.15.0",
"mocha": "11.7.2",
"prettier": "3.6.2",
"tsonic": "^0.0.74",
"typescript": "5.9.2",
"typescript-eslint": "^8.45.0"
},
"engines": {
"node": ">=22.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/tsoniclang/tsonic.git"
},
"keywords": [
"typescript",
"csharp",
"compiler",
"native-aot",
"dotnet",
"transpiler"
],
"author": "Tsonic Project",
"license": "MIT",
"dependencies": {
"@tsonic/cli": "0.0.74",
"@tsonic/core": "10.0.40",
"@tsonic/dotnet": "10.0.40",
"@tsonic/globals": "10.0.41",
"@tsonic/nodejs": "10.0.48"
}
}