-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.67 KB
/
Copy pathpackage.json
File metadata and controls
61 lines (61 loc) · 1.67 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
{
"name": "@tsonic/csharp-nodejs",
"version": "0.1.1",
"description": "C# NodeJS target capability package for Tsonic",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/tsoniclang/csharp-nodejs.git"
},
"type": "module",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist",
"Directory.Build.props",
"csharp/src",
"!csharp/src/**/bin/**",
"!csharp/src/**/obj/**",
"README.md",
"LICENSE"
],
"exports": {
".": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"./package.json": "./package.json",
"./runtime.csproj": "./csharp/src/Tsonic.CSharp.Node/Tsonic.CSharp.Node.csproj",
"./runtime.props": "./Directory.Build.props"
},
"tsonic": {
"kind": "plugin",
"contractVersion": 1,
"entry": "."
},
"scripts": {
"build": "bash scripts/build.sh",
"test": "node ../tsonic/test/scripts/run-parallel.mjs --scope csharp-nodejs --with-preruns",
"test:parallel": "node ../tsonic/test/scripts/run-parallel.mjs --scope csharp-nodejs"
},
"peerDependencies": {
"@tsonic/target-api": "0.1.1",
"@tsonic/target-csharp": "0.1.1",
"@tsonic/tsts": "0.1.1"
},
"dependencies": {
"@tsonic/csharp-js": "0.1.1",
"@tsonic/csharp-runtime": "0.1.1"
},
"devDependencies": {
"@types/node": "25.9.1",
"@tsonic/csharp-js": "file:../csharp-js",
"@tsonic/csharp-runtime": "file:../csharp-runtime",
"@tsonic/target-api": "file:../tsonic/packages/target-api",
"@tsonic/target-csharp": "file:../tsonic-csharp",
"@tsonic/tsts": "file:../tsonic/packages/tsts"
},
"engines": {
"node": ">=22.18.0"
}
}