-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) 路 1.69 KB
/
Copy pathpackage.json
File metadata and controls
64 lines (64 loc) 路 1.69 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
{
"name": "@codechu/flow-core-seed",
"version": "1.0.0",
"description": "馃尡 Flow Core Seed - Ultra-minimal framework foundation with 4 immutable interfaces for Flow ecosystem",
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.mjs",
"require": "./dist/index.js",
"types": "./dist/index.d.ts"
}
},
"files": [
"dist/**/*",
"README.md",
"CHANGELOG.md"
],
"scripts": {
"build": "tsup src/index.ts --format cjs,esm --dts --clean",
"test": "npm run build && node --test tests/core.test.js",
"test:watch": "node --test --watch --import tsx/esm tests/**/*.test.ts",
"typecheck": "tsc --noEmit",
"lint": "eslint src tests --ext .ts",
"prepublishOnly": "npm run typecheck && npm run test && npm run build"
},
"keywords": [
"flow",
"streaming",
"pipeline",
"framework",
"result-pattern",
"functional",
"typescript",
"minimal",
"seed"
],
"author": "Codechu - Obarlik",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/codechu/flow-core-seed.git"
},
"bugs": {
"url": "https://github.com/codechu/flow-core-seed/issues"
},
"homepage": "https://github.com/codechu/flow-core-seed#readme",
"devDependencies": {
"@types/node": "^20.0.0",
"tsup": "^7.0.0",
"tsx": "^3.12.0",
"typescript": "^5.0.0",
"eslint": "^8.0.0",
"@typescript-eslint/eslint-plugin": "^6.0.0",
"@typescript-eslint/parser": "^6.0.0"
},
"engines": {
"node": ">=18.0.0"
},
"publishConfig": {
"access": "public"
}
}