-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
52 lines (52 loc) · 1.27 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
{
"name": "kysely-orm",
"version": "0.9.7",
"description": "Type safe ORM for kysely",
"repository": {
"type": "git",
"url": "git://github.com/seeden/kysely-orm.git"
},
"engines": {
"node": ">=16.2.0"
},
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"exports": {
".": {
"import": "./dist/esm/index.js",
"require": "./dist/cjs/index.js"
}
},
"scripts": {
"clean": "rm -rf dist",
"prettier": "prettier --write src/**/*.ts test/**/*.ts",
"build": "npm run clean && npm run build:esm && npm run build:cjs",
"build:esm": "tsc -p tsconfig.json",
"build:cjs": "tsc -p tsconfig-cjs.json",
"test": "jest",
"prepublishOnly": "npm run build",
"valid": "tsc --noEmit"
},
"author": "Zlatko Fedor <[email protected]>",
"license": "MIT",
"dependencies": {
"puid": "^1.0.7",
"url-slug": "^3.0.4"
},
"devDependencies": {
"@types/better-sqlite3": "^7.6.4",
"@types/jest": "^29.5.1",
"@types/node": "^20.2.5",
"@types/pg": "^8.10.1",
"better-sqlite3": "^8.4.0",
"dotenv": "^16.0.3",
"jest": "^29.5.0",
"kysely": "~0.24.2",
"prettier": "^2.8.8",
"ts-jest": "^29.1.0",
"typescript": "5.0.4"
},
"peerDependencies": {
"kysely": "~0.24.0"
}
}