-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 1.62 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
56
57
58
59
60
{
"name": "@skyleague/axioms",
"version": "1.0.0",
"description": "Library with axioms for writing Typescript/Javascript",
"homepage": "https://skyleague.github.io/axioms/",
"repository": {
"type": "git",
"url": "https://github.com/skyleague/axioms.git"
},
"license": "MIT",
"author": "SkyLeague Technologies B.V. <technologies@skyleague.io> (https://skyleague.io)",
"type": "module",
"exports": {
".": "./.dist/index.js",
"./types": "./.dist/src/types.js",
"./package.json": "./package.json",
"./*.js": "./.dist/*.js"
},
"types": "./.dist/index.d.ts",
"sideEffects": false,
"files": [".dist", "package.json"],
"scripts": {
"build": "tsc -p tsconfig.dist.json",
"build:docs": "npm run --prefix=docs build",
"check:coverage": "vitest run --coverage=true",
"check:project": "node-standards lint",
"check:types": "tsc -p tsconfig.json",
"lint": "biome check",
"lint:fix": "node --run lint -- --write --unsafe",
"package": "rm -rf .dist && node --run build",
"prepare": "husky || true",
"test": "vitest run"
},
"dependencies": {
"fast-deep-equal": "^3.1.3",
"node-object-hash": "^3.1.1",
"type-fest": "^4.31.0"
},
"devDependencies": {
"@skyleague/node-standards": "^9.5.1",
"date-fns": "^4.1.0",
"esbuild": "^0.24.2",
"typescript": "^5.7.2"
},
"engines": {
"node": ">=22"
},
"publishConfig": {
"access": "public",
"provenance": true,
"registry": "https://registry.npmjs.org"
},
"node-standards": {
"extends": ["library"],
"rules": {
"exports": false,
"scripts": false
}
}
}