-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.06 KB
/
Copy pathpackage.json
File metadata and controls
47 lines (47 loc) · 1.06 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
{
"name": "@codehz/json-expr",
"version": "0.6.5",
"description": "A JSON expression evaluation library",
"type": "module",
"main": "./dist/index.mjs",
"types": "./dist/index.d.mts",
"exports": {
".": {
"types": "./dist/index.d.mts",
"import": "./dist/index.mjs"
}
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"repository": {
"type": "git",
"url": "https://github.com/codehz/json-expr.git"
},
"scripts": {
"prepare": "husky || exit 0",
"build": "tsdown",
"release": "bun run build",
"lint": "oxlint",
"lint:fix": "oxlint --fix",
"format": "oxfmt",
"format:check": "oxfmt --check",
"type-check": "tsc --noEmit"
},
"lint-staged": {
"*": "oxfmt --no-error-on-unmatched-pattern",
"*.{ts,tsx,js,jsx,mjs,cjs}": "oxlint --fix"
},
"devDependencies": {
"@types/bun": "1.3.14",
"husky": "^9.1.7",
"lint-staged": "^17.3.0",
"oxfmt": "^0.62.0",
"oxlint": "^1.77.0",
"oxlint-tsgolint": "^7.0.2001",
"tsdown": "^0.22.14",
"typescript": "^7.0.2"
}
}