-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
90 lines (90 loc) · 2.81 KB
/
package.json
File metadata and controls
90 lines (90 loc) · 2.81 KB
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
82
83
84
85
86
87
88
89
90
{
"name": "@aignostics/monorepo",
"version": "0.0.0-development",
"description": "Monorepo for Aignostics Platform TypeScript SDK and CLI",
"type": "module",
"private": true,
"workspaces": [
"packages/*"
],
"scripts": {
"build": "nx run-many -t build",
"build:sdk": "nx build sdk",
"build:cli": "nx build cli",
"test": "nx run-many -t test",
"test:sdk": "nx test sdk",
"test:cli": "nx test cli",
"test:cli:e2e": "nx test:e2e cli",
"test:coverage": "nx run-many -t test --coverage",
"lint": "nx run-many -t lint",
"lint:sdk": "nx lint sdk",
"lint:cli": "nx lint cli",
"typecheck": "nx run-many -t typecheck",
"typecheck:sdk": "nx typecheck sdk",
"typecheck:cli": "nx typecheck cli",
"codegen": "nx codegen sdk",
"clean": "rm -rf dist packages/*/dist packages/*/coverage",
"docs": "typedoc packages/sdk/src/index.ts --out docs --exclude '**/*.test.ts' --exclude 'packages/sdk/src/generated/**'",
"docs:serve": "npx http-server docs -p 8080",
"format": "prettier --write packages/*/src/**/*.ts",
"format:check": "prettier --check packages/*/src/**/*.ts",
"generate-attributions": "node scripts/generate-attributions.js",
"analyze-licenses": "node scripts/analyze-licenses.js",
"check-license-policy": "node scripts/check-license-policy.js",
"prepare": "husky"
},
"repository": {
"type": "git",
"url": "git+https://github.com/aignostics/typescript-sdk.git"
},
"keywords": [
"aignostics",
"platform",
"sdk",
"typescript",
"api"
],
"author": "Aignostics",
"license": "MIT",
"bugs": {
"url": "https://github.com/aignostics/typescript-sdk/issues"
},
"homepage": "https://github.com/aignostics/typescript-sdk#readme",
"devDependencies": {
"@eslint/js": "^9.31.0",
"@faker-js/faker": "^9.9.0",
"@nx/eslint": "^21.3.5",
"@nx/js": "^21.3.5",
"@nx/node": "^21.3.5",
"@nx/vite": "^21.6.6",
"@semantic-release/commit-analyzer": "^13.0.0",
"@semantic-release/github": "^11.0.0",
"@semantic-release/npm": "^13.1.2",
"@semantic-release/release-notes-generator": "^14.0.1",
"@types/node": "^24.0.13",
"@vitest/coverage-v8": "^3.2.4",
"@vitest/ui": "^3.2.4",
"chalk": "^5.5.0",
"conventional-changelog-conventionalcommits": "^8.0.0",
"eslint": "^9.31.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.3",
"execa": "^9.6.0",
"fishery": "^2.3.1",
"fs-extra": "^11.3.2",
"husky": "^9.1.7",
"license-checker-rseidelsohn": "^4.4.2",
"msw": "^2.10.4",
"nx": "^21.3.5",
"prettier": "^3.4.2",
"semantic-release": "^25.0.2",
"tsup": "^8.5.0",
"typedoc": "^0.28.7",
"typescript": "^5.8.3",
"typescript-eslint": "^8.38.0",
"vitest": "^3.2.4"
},
"engines": {
"node": ">=18.0.0"
}
}