-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
105 lines (105 loc) · 3.31 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
{
"$schema": "http://json.schemastore.org/package.json",
"name": "pinot-noir",
"version": "1.11.2",
"description": "Unofficial client for Apache Pinot.",
"keywords": [
"pinot",
"apache pinot",
"sql",
"template tag"
],
"homepage": "https://github.com/SkeLLLa/pinot-noir/blob/master/README.md",
"bugs": {
"url": "https://github.com/SkeLLLa/pinot-noir/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/SkeLLLa/pinot-noir.git"
},
"license": "MIT",
"author": "m03geek",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"directories": {
"lib": "src",
"doc": "docs",
"example": "examples",
"test": "test"
},
"files": [
"dist"
],
"scripts": {
"build": "pnpm run build:node && pnpm run build:docs",
"build:clean": "rm -rf dist",
"build:docs": "api-extractor run -l && api-documenter markdown -i ./temp -o ./docs/api && pretty-quick",
"build:node": "tsc -p tsconfig.build.json",
"examples": "tsx examples/index.ts",
"lint": "pnpm run lint:types && pnpm run lint:codestyle && pnpm run lint:packages",
"lint:codestyle": "eslint",
"lint:packages": "pnpm audit --prod --audit-level=high",
"lint:types": "tsc -p tsconfig.json",
"release": "semantic-release",
"test": "pnpm run lint && pnpm run test:unit",
"test:unit": "globstar --node -- node --no-warnings --import tsx --experimental-test-coverage --test-reporter=lcov --test-reporter-destination=lcov.info --test \"test/**/*.spec.ts\""
},
"dependencies": {
"@no-esm/sql-template-tag": "^5.2.2",
"undici": "^7.2.0"
},
"devDependencies": {
"@eslint/eslintrc": "^3.2.0",
"@eslint/js": "^9.17.0",
"@ianvs/prettier-plugin-sort-imports": "^4.4.0",
"@microsoft/api-documenter": "^7.26.3",
"@microsoft/api-extractor": "^7.48.1",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/commit-analyzer": "^13.0.0",
"@semantic-release/exec": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^11.0.1",
"@semantic-release/npm": "^12.0.1",
"@semantic-release/release-notes-generator": "^14.0.2",
"@tsconfig/node-lts": "^22.0.1",
"@tsconfig/strictest": "^2.0.5",
"@types/eslint__js": "^8.42.3",
"@types/node": "^22.10.3",
"@typescript-eslint/eslint-plugin": "^8.19.0",
"conventional-changelog-conventionalcommits": "^8.0.0",
"eslint": "^9.17.0",
"eslint-config-google": "^0.14.0",
"eslint-config-prettier": "^9.1.0",
"eslint-import-resolver-typescript": "^3.7.0",
"eslint-plugin-import-x": "^4.6.1",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-tsdoc": "^0.4.0",
"globals": "^15.14.0",
"globstar": "^1.0.0",
"prettier": "^3.4.2",
"prettier-plugin-jsdoc": "^1.3.0",
"prettier-plugin-packagejson": "^2.5.6",
"prettier-plugin-sh": "^0.14.0",
"prettier-plugin-sort-json": "^4.0.0",
"pretty-quick": "^4.0.0",
"semantic-release": "^24.2.0",
"tsx": "^4.19.2",
"typescript": "^5.7.2",
"typescript-eslint": "^8.19.0"
},
"packageManager": "[email protected]",
"engines": {
"node": ">=18",
"pnpm": ">=9"
},
"volta": {
"node": "22.12.0",
"pnpm": "9.15.0"
},
"publishConfig": {
"access": "public",
"main": "dist/index.js",
"provenance": true,
"typings": "dist/index.d.ts"
}
}