-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
47 lines (47 loc) · 954 Bytes
/
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
{
"name": "@synvox/sql",
"version": "4.2.7",
"license": "MIT",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"start": "vitest",
"build": "npx tsup src/* --dts",
"test": "vitest run",
"prepublish": "npm run test && npm run build",
"publish": "np"
},
"typings": "dist/index.d.ts",
"repository": "https://github.com/Synvox/sql",
"files": [
"dist"
],
"jest": {
"testPathIgnorePatterns": [
"test/types"
]
},
"devDependencies": {
"@types/debug": "4.1.7",
"@types/pg": "8.6.6",
"@types/pluralize": "0.0.33",
"np": "9.2.0",
"prettier": "3.2.5",
"tslib": "2.6.2",
"tsup": "8.0.2",
"typescript": "5.3.3",
"vitest": "1.3.1",
"pg": "*"
},
"dependencies": {
"debug": "*",
"pluralize": "8.0.0"
},
"engines": {
"node": ">=18"
},
"exports": {
".": "./dist/index.js",
"./migrations": "./dist/migrations.js"
}
}