-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
28 lines (28 loc) · 896 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
{
"name": "dzelda-common",
"version": "1.0.0",
"main": "build/src/main.js",
"type": "module",
"description": "Common code for dzelda",
"scripts": {
"compile": "rm rm -rf build && npx tsc --declaration&& tsc-alias",
"generate-schema": "npx swagger-typescript-api -p ./specs/api.json -o . -n ./specs/api-schema.ts --type-suffix Schema --api-class-name ApiClient --disable-throw-on-error"
},
"keywords": [],
"author": "squivix <devintheamateurdevin@gmail.com> (https://github.com/squivix)",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/squivix/dzelda-common.git"
},
"devDependencies": {
"@swc/cli": "^0.1.57",
"@swc/core": "^1.3.14",
"@types/fs-extra": "^11.0.4",
"fs-extra": "^11.2.0",
"swagger-typescript-api": "^13.0.2",
"tsc-alias": "^1.8.8",
"tsx": "^3.12.7",
"vitest": "^1.1.0"
}
}