-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.13 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.13 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
{
"name": "ivms101",
"version": "2.0.0",
"description": "IVMS101.2023 TypeScript library with legacy 2020 support",
"type": "module",
"main": "dist/index.cjs",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"source": "src/index.ts",
"exports": {
".": {
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"require": {
"types": "./dist/index.d.cts",
"default": "./dist/index.cjs"
}
},
"./legacy": {
"import": {
"types": "./dist/legacy.d.ts",
"default": "./dist/legacy.js"
},
"require": {
"types": "./dist/legacy.d.cts",
"default": "./dist/legacy.cjs"
}
}
},
"author": {
"name": "Pelle Braendgaard",
"email": "pelle@notabene.id"
},
"scripts": {
"build": "tsup",
"test": "vitest",
"format": "biome format .",
"format:fix": "biome format --write .",
"lint": "biome lint .",
"lint:fix": "biome lint --write .",
"check": "biome check .",
"fix": "biome check --write ."
},
"devDependencies": {
"@biomejs/biome": "2.3.7",
"fast-check": "^4.3.0",
"tsup": "^8.5.0",
"typescript": "^5.9.0",
"vitest": "^3.2.0",
"zod": "^4.0.0"
}
}