-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
108 lines (108 loc) · 2.67 KB
/
package.json
File metadata and controls
108 lines (108 loc) · 2.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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
{
"name": "@emergentmethods/flowdapt-ts-sdk",
"version": "1.0.8",
"description": "Rest API Client for Flowdapt",
"author": "Emergent Methods <contact@emergentmethods.ai>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/emergentmethods/flowdapt-typescript-sdk.git"
},
"homepage": "https://docs.flowdapt.ai",
"keywords": [
"machine learning",
"cluster orchestration",
"workflow",
"workflow configuration",
"scheduling",
"resource management"
],
"bugs": "https://github.com/emergentmethods/flowdapt-typescript-sdk/issues",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"module": "dist/index.js",
"devDependencies": {
"@commitlint/cli": "^19.3.0",
"@commitlint/config-conventional": "^19.2.2",
"@eslint/js": "^9.5.0",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/exec": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@types/eslint__js": "^8.42.3",
"@types/node": "20.11.5",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"genversion": "^3.2.0",
"globals": "^15.6.0",
"husky": "^9.0.11",
"prettier": "^3.3.2",
"typescript": "^5.4.3",
"typescript-eslint": "^7.13.1"
},
"scripts": {
"lint": "eslint . --ignore-pattern dist/",
"fix": "eslint . --fix --ignore-pattern dist/",
"format": "prettier --write \"**/*.ts\"",
"compile": "tsc",
"prepare": "husky",
"genversion": "genversion -ef src/version.ts",
"prepack": "npm run genversion && npm run compile",
"postversion": "npm run genversion"
},
"dependencies": {
"zod": "^3.22.4"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
],
"rules": {
"subject-case": [
2,
"always",
"sentence-case"
]
}
},
"release": {
"tagFormat": "${version}",
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
"@semantic-release/npm",
[
"@semantic-release/changelog",
{
"changelogFile": "CHANGELOG.md"
}
],
[
"@semantic-release/github",
{
"assets": [
"CHANGELOG.md"
]
}
],
[
"@semantic-release/git",
{
"assets": [
"src/version.ts",
"package.json",
"package-lock.json"
],
"message": "chore(release): Release ${nextRelease.version} [skip ci]"
}
]
]
},
"engines": {
"node": ">=18.0.0"
},
"publishConfig": {
"access": "public"
}
}