-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 1.99 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 1.99 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
{
"name": "@proddata/node-cratedb",
"version": "0.0.20",
"description": "Node.js client for CrateDB",
"type": "module",
"types": "dist/esm/CrateDBClient.d.ts",
"exports": {
"import": {
"types": "./dist/esm/CrateDBClient.d.ts",
"default": "./dist/esm/CrateDBClient.js"
},
"require": {
"types": "./dist/cjs/CrateDBClient.d.ts",
"default": "./dist/cjs/CrateDBClient.js"
}
},
"scripts": {
"build": "npm run build:clean && npm run build:esm && npm run build:cjs",
"build:clean": "rm -rf dist",
"build:esm": "tsc --project tsconfig.esm.json && echo '{\"type\": \"module\"}' > dist/esm/package.json",
"build:cjs": "tsc --project tsconfig.cjs.json && echo '{\"type\": \"commonjs\"}' > dist/cjs/package.json",
"prepare": "npm run build",
"format": "prettier --write 'src/**/*.{ts,tsx,js,jsx}'",
"check-format": "prettier --check 'src/**/*.{ts,tsx,js,jsx}'",
"lint": "eslint 'src/**/*.{ts,tsx}' 'tests/**/*.{ts,tsx}'",
"test": "vitest",
"test:watch": "vitest --watch",
"ci": "npm run check-format && npm run lint && npm test && npm run build",
"release": "npm run ci && npm version",
"postrelease": "git push && git push --tags && npm publish"
},
"repository": {
"type": "git",
"url": "https://github.com/proddata/node-cratedb.git"
},
"keywords": [
"cratedb",
"crate",
"database",
"nodejs",
"sql",
"client"
],
"author": "Georg Traar",
"license": "MIT",
"files": [
"dist",
"README.md",
"LICENSE"
],
"devDependencies": {
"@eslint/js": "^9.20.0",
"@types/node": "^22.13.4",
"@typescript-eslint/eslint-plugin": "^8.24.0",
"@typescript-eslint/parser": "^8.24.0",
"eslint": "^9.20.1",
"eslint-config-prettier": "^10.0.1",
"eslint-plugin-prettier": "^5.2.3",
"globals": "^15.15.0",
"testcontainers": "^10.14.0",
"typescript": "^5.7.3",
"typescript-eslint": "^8.24.0",
"vitest": "^4.0.14"
},
"engines": {
"node": ">=21.0.0"
}
}