-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.12 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
{
"name": "@kasnix/structured-objects",
"version": "1.0.2",
"repository": {
"type": "git",
"url": "https://github.com/luckasnix/structured-objects.git"
},
"type": "module",
"main": "dist/index.js",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"keywords": [
"javascript",
"typescript",
"data structures",
"graph"
],
"license": "MIT",
"scripts": {
"build": "tsc && vite build",
"test": "vitest",
"test:watch": "vitest watch",
"type:check": "tsc -p ./tsconfig.json --noEmit",
"format:check": "biome format .",
"format:write": "biome format --write .",
"lint:check": "biome lint .",
"lint:write": "biome lint --write .",
"prepare": "husky"
},
"devDependencies": {
"@biomejs/biome": "1.9.4",
"@commitlint/cli": "19.5.0",
"@commitlint/config-conventional": "19.5.0",
"@types/node": "20.16.10",
"husky": "9.1.6",
"semantic-release": "24.2.0",
"typescript": "5.5.4",
"vite": "5.4.10",
"vite-plugin-dts": "4.3.0",
"vitest": "2.1.4"
},
"publishConfig": {
"access": "public"
}
}