-
Notifications
You must be signed in to change notification settings - Fork 127
/
Copy pathpackage.json
81 lines (81 loc) · 2.16 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
72
73
74
75
76
77
78
79
80
81
{
"name": "@deepkit/sql",
"version": "1.0.1-alpha.154",
"description": "deepkit/orm base SQL",
"type": "commonjs",
"main": "./dist/cjs/index.js",
"module": "./dist/esm/index.js",
"types": "./dist/cjs/index.d.ts",
"exports": {
".": {
"types": "./dist/cjs/index.d.ts",
"require": "./dist/cjs/index.js",
"browser": "./dist/esm/browser.js",
"default": "./dist/esm/index.js"
},
"./commands": {
"types": "./dist/cjs/commands.d.ts",
"require": "./dist/cjs/commands.js",
"default": "./dist/esm/commands.js"
}
},
"bin": {
"deepkit-sql": "./bin/deepkit-sql.js"
},
"sideEffects": false,
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "echo '{\"type\": \"module\"}' > ./dist/esm/package.json"
},
"repository": "https://github.com/deepkit/deepkit-framework",
"author": "Marc J. Schmidt <[email protected]>",
"license": "MIT",
"peerDependencies": {
"@deepkit/app": "^1.0.1-alpha.13",
"@deepkit/core": "^1.0.1-alpha.13",
"@deepkit/injector": "^1.0.1-alpha.13",
"@deepkit/logger": "^1.0.1-alpha.13",
"@deepkit/orm": "^1.0.1-alpha.13",
"@deepkit/stopwatch": "^1.0.1-alpha.13",
"@deepkit/type": "^1.0.1-alpha.13",
"tsx": "4.19.1"
},
"dependencies": {
"@types/sqlstring": "^2.2.1",
"date-fns": "^2.17.0",
"fast-glob": "^3.2.5",
"sqlstring": "^2.3.2",
"sqlstring-sqlite": "^0.1.1"
},
"devDependencies": {
"@deepkit/app": "^1.0.1-alpha.154",
"@deepkit/core": "^1.0.1-alpha.154",
"@deepkit/injector": "^1.0.1-alpha.154",
"@deepkit/logger": "^1.0.1-alpha.154",
"@deepkit/orm": "^1.0.1-alpha.154",
"@deepkit/stopwatch": "^1.0.1-alpha.154",
"@deepkit/type": "^1.0.1-alpha.154"
},
"jest": {
"runner": "../../jest-serial-runner.js",
"testEnvironment": "node",
"transform": {
"^.+\\.(ts|tsx)$": [
"ts-jest",
{
"tsconfig": "<rootDir>/tsconfig.spec.json"
}
]
},
"moduleNameMapper": {
"(.+)\\.js": "$1"
},
"testTimeout": 50000,
"testMatch": [
"**/tests/**/*.spec.ts"
]
},
"gitHead": "56081823b559bb68b77a8781957af5d9c2e019a7"
}