-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1008 Bytes
/
package.json
File metadata and controls
44 lines (44 loc) · 1008 Bytes
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
{
"name": "@atools/tlang",
"version": "1.0.3",
"description": "Visual-first type system above TypeScript, powered by FBP",
"keywords": [
"typescript",
"types",
"fbp",
"flow-based-programming",
"type-system",
"type-transforms",
"higher-order-types",
"type-composition"
],
"main": "lib/index.js",
"types": "lib/index.d.ts",
"files": [
"lib",
"src"
],
"scripts": {
"build": "tsc -p tsconfig.json",
"watch": "tsc -p tsconfig.json -w",
"test": "jest --coverage",
"test:watch": "jest --watch",
"examples": "node scripts/run-examples.js"
},
"author": "qddegtya",
"license": "MIT",
"devDependencies": {
"@jest/globals": "^30.2.0",
"@types/jest": "^29.0.0",
"@types/node": "^20.0.0",
"jest": "^29.0.0",
"ts-jest": "^29.0.0",
"ts-node": "^10.9.2",
"tsconfig-paths": "^4.2.0",
"typescript": "^5.3.0"
},
"repository": {
"type": "git",
"url": "https://github.com/qddegtya/tlang.git"
}
}