-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.41 KB
/
package.json
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
{
"name": "@kasnix/structured-objects",
"version": "1.2.0",
"repository": {
"type": "git",
"url": "git+https://github.com/luckasnix/structured-objects.git"
},
"type": "module",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"default": "./dist/index.js"
},
"./object-graph": {
"types": "./dist/object-graph.d.ts",
"import": "./dist/object-graph.js",
"default": "./dist/object-graph.js"
}
},
"files": ["dist"],
"keywords": ["javascript", "typescript", "data structures", "graph"],
"license": "MIT",
"publishConfig": {
"access": "public"
},
"engines": {
"node": ">=20.8.1"
},
"scripts": {
"build": "tsc && vite build",
"test": "vitest",
"test:watch": "vitest watch",
"type:check": "tsc -p ./tsconfig.json --noEmit",
"check": "biome check .",
"check:write": "biome check --write .",
"format": "biome format --write .",
"format:write": "biome format --write .",
"lint": "biome lint .",
"lint:write": "biome lint --write .",
"prepare": "husky"
},
"devDependencies": {
"@biomejs/biome": "1.9.4",
"@commitlint/cli": "19.6.1",
"@commitlint/config-conventional": "19.6.0",
"@types/node": "20.8.10",
"husky": "9.1.7",
"semantic-release": "24.2.1",
"typescript": "5.0.4",
"vite": "6.0.7",
"vite-plugin-dts": "4.5.0",
"vitest": "3.0.0"
}
}