-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
52 lines (52 loc) · 1.26 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
{
"name": "dvalin-data",
"version": "1.0.3",
"type": "module",
"main": "dist/types/index.d.ts",
"types": "dist/types/index.d.ts",
"files": [
"dist"
],
"scripts": {
"lint": "eslint .",
"validate-json": "bun run scripts/workflow/validate_json.ts",
"build": "tsc -p tsconfig.build.json",
"prepublishOnly": "bun run build"
},
"lint-staged": {
"types/**/*.ts": [
"eslint .",
"bun run scripts/workflow/generate-schemas.ts",
"git add schemas/*.schema.json"
]
},
"dependencies": {
"@types/jsdom": "^21.1.7",
"ajv": "^8.17.1",
"glob": "^11.0.0",
"i": "^0.3.7",
"jsdom": "^25.0.1",
"string-strip-html": "^13.4.8",
"ts-json-schema-generator": "^2.3.0"
},
"devDependencies": {
"@commitlint/config-conventional": "^19.5.0",
"@commitlint/cli": "^19.5.0",
"@types/bun": "^1.1.13",
"axios": "^1.7.7",
"bun-types": "^1.1.34",
"cheerio": "^1.0.0",
"eslint": "^9.14.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"prettier": "^3.3.3",
"typescript": "^5.6.3",
"typescript-eslint": "^8.14.0"
},
"engines": {
"bun": "^1.1.18",
"pnpm": "please-use-bun",
"npm": "please-use-bun",
"yarn": "please-use-bun"
}
}