-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.05 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.05 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
{
"name": "constrained-map",
"version": "0.0.3",
"description": "TypeScript utility extending Map with strict key-value type constraints",
"keywords": [
"typescript",
"utility",
"map",
"record",
"generic"
],
"author": "leumasic",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/leumasic/constrained-map.git"
},
"main": "dist/cjs/index.js",
"module": "dist/mjs/wrapper.mjs",
"esnext": "dist/mjs/wrapper.mjs",
"exports": {
".": {
"types": "./dist/cjs/index.d.ts",
"require": "./dist/cjs/index.js",
"import": "./dist/mjs/wrapper.mjs"
}
},
"files": [
"package.json",
"README.md",
"LICENSE",
"dist/"
],
"scripts": {
"build": "tsc --project tsconfig.build.json",
"test": "vitest run --passWithNoTests",
"format": "biome format --write src"
},
"devDependencies": {
"@biomejs/biome": "1.7.3",
"@changesets/changelog-github": "^0.5.0",
"@changesets/cli": "^2.27.5",
"typescript": "^5.6.3",
"vitest": "^1.6.0"
}
}