-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 1.92 KB
/
Copy pathpackage.json
File metadata and controls
71 lines (71 loc) · 1.92 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
{
"name": "jty",
"version": "6.3.1",
"description": "A minimal, zero-dependency, AI friendly, library for runtime type checking with developer ergonomy in mind",
"keywords": [
"typescript",
"language",
"runtime type checking",
"javascript",
"type safety",
"defensive programming",
"security",
"verification",
"ai friendly",
"SKILL",
"manual type check"
],
"type": "module",
"main": "./lib/index.cjs",
"module": "./lib/index.js",
"types": "./lib/index.d.ts",
"exports": {
".": {
"types": "./lib/index.d.ts",
"import": "./lib/index.js",
"require": "./lib/index.cjs"
}
},
"directories": {
"lib": "lib",
"doc": "docs",
"test": "test"
},
"files": [
"lib",
"skills"
],
"scripts": {
"fmt": "prettier --write .",
"lint": "eslint",
"typecheck": "tsc --noEmit",
"doc": "typedoc src/index.ts",
"test": "npm run typecheck && node --import tsx --test",
"prebuild": "rm -rf lib doc",
"build": "tsup --dts && npm run doc",
"preversion": "npm run fmt && npm t",
"prepublishOnly": "npm run build",
"postversion": "git push && git push --tags"
},
"repository": {
"type": "git",
"url": "git+https://github.com/alexewerlof/jty.git"
},
"author": "Alex Ewerlöf",
"license": "MIT",
"devDependencies": {
"@eslint/js": "^10.0.1",
"@eslint/json": "^1.0.1",
"@eslint/markdown": "^7.5.1",
"@types/node": "^24.12.0",
"eslint": "^10.0.2",
"globals": "^17.4.0",
"jiti": "^2.6.1",
"prettier": "^3.8.1",
"tsup": "^8.5.1",
"tsx": "^4.21.0",
"typedoc": "^0.28.17",
"typescript": "^5.9.3",
"typescript-eslint": "^8.56.1"
}
}