-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 2.02 KB
/
Copy pathpackage.json
File metadata and controls
70 lines (70 loc) · 2.02 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": "@seamapi/nextlove-sdk-csharp",
"version": "0.96.0",
"description": "CSharp SDK autogenerated from nextlove types.",
"type": "module",
"main": "index.js",
"types": "index.d.ts",
"exports": {
".": {
"import": "./index.js",
"types": "./index.d.ts"
}
},
"module": "index.js",
"sideEffects": false,
"keywords": [
"node"
],
"homepage": "https://github.com/seamapi/nextlove-sdk-csharp",
"bugs": "https://github.com/seamapi/nextlove-sdk-csharp/issues",
"repository": "seamapi/nextlove-sdk-csharp",
"license": "SEE LICENSE IN LICENSE.txt",
"author": {
"name": "Seam Labs, Inc.",
"email": "devops@getseam.com"
},
"files": [
"index.js",
"index.js.map",
"index.d.ts",
"lib",
"src",
"!**/*.test.ts"
],
"scripts": {
"build": "npm run generate",
"typecheck": "tsc",
"test": "dotnet test ./output/csharp",
"pretest": "npm run generate",
"test:update": "ava --update-snapshots",
"test:watch": "ava --watch",
"test:debug": "ava debug --break",
"lint": "eslint .",
"postlint": "prettier --check --ignore-path .gitignore --ignore-path .prettierignore .",
"format": "prettier --write --ignore-path .gitignore --ignore-path .prettierignore .",
"preformat": "eslint --fix .",
"postversion": "git push --follow-tags",
"example": "tsx examples",
"example:inspect": "tsx --inspect examples",
"format:csharp": "dotnet csharpier ./output/csharp",
"report": "c8 report",
"generate": "tsx codegen/smith.ts && npm run generate:csproj && npm run format:csharp",
"generate:csproj": "tsx src/generate-csproj.ts",
"pack": "npm run generate:csproj && dotnet pack ./output/csharp/src/Seam -o ./"
},
"engines": {
"node": ">=22.11.0",
"npm": ">=10.9.4"
},
"devDependencies": {
"@seamapi/blueprint": "0.55.0",
"@seamapi/smith": "^0.5.2",
"@seamapi/types": "1.691.0",
"@types/node": "^24.10.9",
"ava": "^5.0.1",
"c8": "^8.0.0",
"change-case": "^4.1.2",
"prettier": "^3.0.0"
}
}