-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
71 lines (71 loc) · 1.73 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
{
"name": "@jrmc/etl",
"version": "1.0.1",
"type": "module",
"description": "Extract transform load for nodejs",
"engines": {
"node": ">=20.12.0"
},
"main": "build/index.js",
"repository": {
"type": "git",
"url": "https://github.com/batosai/etl.git"
},
"homepage": "https://etl.jrmc.dev",
"author": "Jeremy Chaufourier [email protected]",
"license": "MIT",
"keywords": [
"etl",
"extract transform load"
],
"files": [
"build"
],
"scripts": {
"typecheck": "tsc --noEmit",
"build": "npm run clean && tsc",
"prepublishOnly": "npm run build",
"clean": "del-cli build",
"format": "prettier --write .",
"docs:dev": "vitepress dev docs",
"docs:build": "vitepress build docs",
"docs:preview": "vitepress preview docs",
"test": "node --loader ts-node/esm --enable-source-maps bin/test.ts"
},
"exports": {
".": "./build/index.js",
"./types": "./build/src/types.js",
"./source": "./build/src/base_source.js",
"./transform": "./build/src/base_transform.js",
"./destination": "./build/src/base_destination.js"
},
"devDependencies": {
"@adonisjs/tsconfig": "^1.4.0",
"@japa/assert": "^3.0.0",
"@japa/runner": "^3.1.4",
"@swc/core": "^1.7.26",
"@types/node": "^22.2.0",
"del-cli": "^6.0.0",
"prettier": "^3.3.3",
"ts-node": "^10.9.2",
"typescript": "^5.5.4",
"vitepress": "^1.4.1"
},
"prettier": {
"trailingComma": "es5",
"semi": false,
"singleQuote": true,
"useTabs": false,
"quoteProps": "consistent",
"bracketSpacing": true,
"arrowParens": "always",
"printWidth": 100
},
"publishConfig": {
"access": "public",
"tag": "latest"
},
"volta": {
"node": "20.18.0"
}
}