-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
35 lines (35 loc) · 1.48 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
{
"name": "@squidex/squidex",
"version": "2.0.0-rc2",
"private": false,
"repository": "https://github.com/squidex/sdk-node",
"main": "./index.js",
"types": "./index.d.ts",
"scripts": {
"build": "tsc",
"format:tests": "prettier --write tests/**/*.ts",
"format:source": "prettier --write src/wrapper/**/*.ts && eslint --fix src/**/*.ts",
"generate:help": "cross-env-shell docker run --rm -v $INIT_CWD:/local openapitools/openapi-generator-cli config-help -g typescript-fetch",
"generate:run": "cross-env-shell docker run --rm -v $INIT_CWD:/local openapitools/openapi-generator-cli generate -i /local/openapi.json -g typescript-fetch --template-dir /local/templates -o /local/src/generated -c /local/openapi-config.yml",
"generate": "npm run generate:run && npm run format:source && npm run format:tests",
"prepack": "cp -rv dist/. .",
"test": "jest tests"
},
"devDependencies": {
"@babel/core": "^7.25.2",
"@babel/preset-env": "^7.25.4",
"@babel/preset-typescript": "^7.24.7",
"@eslint/js": "^9.9.1",
"@types/eslint__js": "^8.42.3",
"@types/jest": "^29.5.12",
"@types/node": "22.5.0",
"cross-env": "^7.0.3",
"eslint": "^9.9.1",
"eslint-plugin-unused-imports": "^4.1.3",
"jest": "^29.7.0",
"prettier": "3.3.3",
"typescript": "^5.5.4",
"typescript-eslint": "^8.2.0",
"undici": "^6.19.8"
}
}