-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 1.1 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
{
"name": "deepkit-build-tests",
"type": "module",
"private": true,
"license": "MIT",
"scripts": {
"run-with:esbuild": "node esbuild.mjs && node dist/esbuild/index.js",
"run-with:tsc": "tsc --build tsconfig.esm.json && node dist/tsc/esm/index.js",
"run-with:vite-node": "vite-node ./src/index.ts",
"deepkit-transformer:install": "node ./node_modules/@deepkit/type-compiler/dist/cjs/install-transformer.js",
"postinstall": "pnpm run deepkit-transformer:install"
},
"dependencies": {
"@deepkit/type": "^1.0.1-alpha.97"
},
"devDependencies": {
"@deepkit/type-compiler": "^1.0.1-alpha.97",
"@deepkit/vite": "^1.0.1-alpha.97",
"@gjsify/esbuild-plugin-deepkit": "^0.0.3",
"@types/node": "^18.16.19",
"esbuild": "^0.18.11",
"typescript": "^5.1.6",
"vite": "^4.3.9",
"vite-node": "^0.32.4"
},
"stackblitz": {
"startCommand": "pnpm run run-with:vite-node"
},
"engines": {
"node": "18.15.0"
},
"pnpm": {
"patchedDependencies": {
"@deepkit/[email protected]": "patches/@[email protected]"
}
}
}