-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
102 lines (102 loc) · 2.36 KB
/
package.json
File metadata and controls
102 lines (102 loc) · 2.36 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
{
"name": "eyecite-ts",
"version": "0.11.2",
"description": "TypeScript port of eyecite - extract, resolve, and annotate legal citations",
"type": "module",
"exports": {
".": {
"import": {
"types": "./dist/index.d.mts",
"default": "./dist/index.mjs"
},
"require": {
"types": "./dist/index.d.cts",
"default": "./dist/index.cjs"
}
},
"./data": {
"import": {
"types": "./dist/data/index.d.mts",
"default": "./dist/data/index.mjs"
},
"require": {
"types": "./dist/data/index.d.cts",
"default": "./dist/data/index.cjs"
}
},
"./annotate": {
"import": {
"types": "./dist/annotate/index.d.mts",
"default": "./dist/annotate/index.mjs"
},
"require": {
"types": "./dist/annotate/index.d.cts",
"default": "./dist/annotate/index.cjs"
}
},
"./utils": {
"import": {
"types": "./dist/utils/index.d.mts",
"default": "./dist/utils/index.mjs"
},
"require": {
"types": "./dist/utils/index.d.cts",
"default": "./dist/utils/index.cjs"
}
}
},
"main": "./dist/index.cjs",
"module": "./dist/index.mjs",
"types": "./dist/index.d.mts",
"files": [
"dist"
],
"sideEffects": false,
"packageManager": "pnpm@10.6.5",
"engines": {
"node": ">=18.0.0"
},
"scripts": {
"build": "tsdown",
"test": "vitest",
"typecheck": "tsc --noEmit",
"lint": "biome lint src tests",
"format": "biome format --write src tests",
"size": "size-limit",
"check:size": "npx tsx scripts/check-bundle-size.ts"
},
"devDependencies": {
"@biomejs/biome": "^2.3.0",
"@changesets/changelog-github": "^0.5.2",
"@changesets/cli": "^2.29.8",
"@size-limit/preset-small-lib": "^12.0.0",
"@vitest/coverage-v8": "^4.0.0",
"size-limit": "^12.0.0",
"tsdown": "^0.20.0",
"typescript": "^5.9.0",
"vitest": "^4.0.0"
},
"size-limit": [
{
"path": "dist/index.mjs",
"limit": "50 KB"
},
{
"path": "dist/utils/index.mjs",
"limit": "3 KB"
}
],
"keywords": [
"legal",
"citation",
"extraction",
"typescript",
"eyecite"
],
"license": "MIT",
"author": "medelman17",
"repository": {
"type": "git",
"url": "https://github.com/medelman17/eyecite-ts.git"
}
}