-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.41 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
{
"name": "kysely-mapper",
"version": "0.4.16",
"author": "Joseph T. Lapp <[email protected]>",
"license": "MIT",
"description": "Flexible Kysely-based utility for mapping between tables and objects",
"repository": {
"type": "git",
"url": "https://github.com/jtlapp/kysely-mapper"
},
"keywords": [
"kysely",
"mapper",
"orm",
"object-relational mapping",
"compiled",
"cached",
"parameterized",
"parameters"
],
"type": "module",
"main": "dist/cjs/index.js",
"types": "dist/cjs/index.d.ts",
"source": "/index.ts",
"files": [
"dist/**"
],
"exports": {
".": {
"import": "./dist/esm/index.js",
"require": "./dist/cjs/index.js"
}
},
"scripts": {
"clean": "rm -rf node_modules && rm -rf dist",
"build": "rm -rdf dist && tsc && tsc -p tsconfig.cjs.json && pnpm write-packages",
"write-packages": "echo '{\"type\":\"module\"}' > dist/esm/package.json && echo '{\"type\":\"commonjs\"}' > dist/cjs/package.json",
"build-docs": "typedoc --options ./typedoc.cjs ./src/index.ts",
"build-all": "pnpm build && pnpm build-docs",
"test": "vitest --run"
},
"dependencies": {
"kysely": "^0.24.2",
"kysely-params": "^0.3.14"
},
"devDependencies": {
"@types/better-sqlite3": "^7.6.3",
"better-sqlite3": "^8.2.0",
"typedoc": "^0.24.5",
"typescript": "5.1.3",
"vite": "^4.3.6",
"vitest": "^0.32.2"
}
}