-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
95 lines (95 loc) · 2.24 KB
/
package.json
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
{
"name": "ts-edge",
"publishConfig": {
"access": "public"
},
"description": "A strongly-typed graph-based workflow engine for building flexible, composable data processing pipelines with TypeScript",
"keywords": [
"graph",
"workflow",
"pipeline",
"typescript",
"edge",
"dataflow",
"state-machine",
"node-processing",
"directed-graph",
"langgraph",
"functional"
],
"author": "cging",
"license": "MIT",
"version": "0.0.10",
"type": "module",
"sideEffects": false,
"main": "./dist/index.js",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.cjs",
"default": "./dist/index.js"
}
},
"files": [
"dist"
],
"scripts": {
"prepare": "husky install",
"test": "vitest",
"lint-staged": "lint-staged",
"build": "tsup",
"format": "prettier --write ./**/*.ts",
"type-check": "tsc --noEmit",
"lint": "eslint .",
"prepare:release": "npm run format && npm run type-check && npm run test run",
"prepare:version": "npm --no-git-tag-version version patch",
"release": "npm run prepare:release && npm run build && npm run prepare:version && npm publish"
},
"devDependencies": {
"@eslint/js": "^9.19.0",
"@types/node": "^22.13.5",
"eslint": "^9.19.0",
"globals": "^15.14.0",
"husky": "^8.0.3",
"lint-staged": "^14.0.1",
"prettier": "^3.2.5",
"tsup": "^8.3.6",
"typescript": "~5.7.2",
"typescript-eslint": "^8.22.0",
"vitest": "^3.0.6"
},
"lint-staged": {
"*.{ts,tsx}": [
"eslint --fix",
"prettier --write"
]
},
"engines": {
"node": ">=14.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/cgoinglove/ts-edge.git"
},
"prettier": {
"printWidth": 120,
"tabWidth": 2,
"useTabs": false,
"semi": true,
"singleQuote": true,
"quoteProps": "as-needed",
"jsxSingleQuote": false,
"trailingComma": "es5",
"bracketSpacing": true,
"bracketSameLine": false,
"arrowParens": "always",
"endOfLine": "lf",
"embeddedLanguageFormatting": "auto"
},
"dependencies": {
"ts-safe": "^0.0.2"
}
}