-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
69 lines (69 loc) · 1.61 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
{
"name": "waddler",
"version": "0.0.12",
"main": "index.js",
"type": "module",
"repository": "https://github.com/drizzle-team/waddler",
"license": "MIT",
"scripts": {
"start": "npx tsx ./src/test.ts",
"start:db": "npx tsx ./src/db-test.ts ",
"test": "vitest --config ./vitest.config.ts",
"lint": "concurrently -n eslint,dprint \"eslint --ext ts .\" \"dprint check --list-different\"",
"build": "pnpm tsx scripts/build.ts",
"pack": "(cd dist && npm pack --pack-destination ..) && rm -f package.tgz && mv *.tgz package.tgz"
},
"exports": {
".": {
"import": {
"types": "./index.d.ts",
"default": "./index.js"
},
"require": {
"types": "./index.d.cts",
"default": "./index.cjs"
}
},
"./neo": {
"import": {
"types": "./neo.d.ts",
"default": "./neo.js"
},
"require": {
"types": "./neo.d.cts",
"default": "./neo.cjs"
}
}
},
"devDependencies": {
"@arethetypeswrong/cli": "^0.16.4",
"@duckdb/node-api": "1.1.2-alpha.4",
"@types/node": "^22.7.6",
"@typescript-eslint/eslint-plugin": "^8.10.0",
"concurrently": "^8.2.1",
"dprint": "^0.46.2",
"duckdb": "^1.1.1",
"eslint": "^8.50.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-no-instanceof": "^1.0.1",
"eslint-plugin-unicorn": "^56.0.0",
"eslint-plugin-unused-imports": "^4.1.4",
"tsup": "^8.3.5",
"tsx": "^4.19.1",
"typescript": "^5.5.4",
"vitest": "^2.1.2",
"zx": "^8.1.9"
},
"peerDependencies": {
"@duckdb/node-api": "^1.1.2-alpha.4",
"duckdb": "^1.1.1"
},
"peerDependenciesMeta": {
"duckdb": {
"optional": true
},
"@duckdb/node-api": {
"optional": true
}
}
}