-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.4 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
{
"name": "@skyleague/predicate",
"description": "",
"version": "1.0.0",
"license": "MIT",
"types": "./.dist/index.d.ts",
"sideEffects": false,
"node-standards": {
"extends": ["library", "docusaurus"]
},
"engines": {
"node": ">=22"
},
"homepage": "https://skyleague.github.io/predicate/",
"repository": {
"type": "git",
"url": "https://github.com/skyleague/predicate.git"
},
"files": [".dist", "package.json"],
"scripts": {
"build": "tsc -p tsconfig.dist.json",
"build:docs": "npm run --workspace=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": {
"@skyleague/axioms": "^6.1.0",
"@skyleague/jsonpath": "^4.0.0"
},
"devDependencies": {
"@skyleague/node-standards": "^9.4.0",
"@skyleague/therefore": "^6.1.2",
"typescript": "^5.7.2",
"uuid": "^11.0.3"
},
"publishConfig": {
"access": "public",
"provenance": true,
"registry": "https://registry.npmjs.org"
},
"type": "module",
"exports": {
".": "./.dist/index.js",
"./package.json": "./package.json",
"./*.js": "./.dist/*.js"
},
"workspaces": ["docs"]
}