-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 1.74 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 1.74 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
{
"name": "@kasnix/structured-objects",
"description": "A lightweight and powerful library for manipulating objects in JavaScript and TypeScript across different types of data structures.",
"author": "Kasnix",
"version": "2.0.1",
"repository": {
"type": "git",
"url": "git+https://github.com/luckasnix/structured-objects.git"
},
"type": "module",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"default": "./dist/index.js"
},
"./similarity-graph": {
"types": "./dist/similarity-graph.d.ts",
"import": "./dist/similarity-graph.js",
"default": "./dist/similarity-graph.js"
}
},
"files": [
"dist"
],
"keywords": [
"javascript",
"typescript",
"data structures",
"graph"
],
"license": "MIT",
"publishConfig": {
"access": "public"
},
"engines": {
"node": ">=22.14.0"
},
"scripts": {
"build": "tsc && vite build",
"test": "vitest",
"test:watch": "vitest watch",
"test:coverage": "vitest run --coverage",
"type:check": "tsc --noEmit",
"format:check": "biome format",
"format:write": "biome format --write",
"lint:check": "biome lint",
"lint:write": "biome lint --write",
"check-all": "biome check",
"write-all": "biome check --write",
"check-ci": "biome ci",
"prepare": "husky"
},
"devDependencies": {
"@biomejs/biome": "2.4.6",
"@commitlint/cli": "20.4.3",
"@commitlint/config-conventional": "20.4.3",
"@types/node": "22.14.1",
"@vitest/coverage-v8": "4.0.18",
"husky": "9.1.7",
"semantic-release": "25.0.3",
"typescript": "5.0.4",
"vite": "7.3.1",
"vite-plugin-dts": "4.5.4",
"vitest": "4.0.18"
}
}