-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
80 lines (80 loc) · 2.72 KB
/
package.json
File metadata and controls
80 lines (80 loc) · 2.72 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
{
"name": "waiaas",
"private": true,
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/minhoyoo-iotrust/WAIaaS.git"
},
"homepage": "https://github.com/minhoyoo-iotrust/WAIaaS#readme",
"bugs": {
"url": "https://github.com/minhoyoo-iotrust/WAIaaS/issues"
},
"type": "module",
"packageManager": "[email protected]",
"engines": {
"node": ">=22.0.0"
},
"scripts": {
"build": "turbo build",
"test": "turbo test",
"test:unit": "turbo run test:unit",
"test:integration": "turbo run test:integration",
"test:security": "turbo run test:security",
"test:chain": "turbo run test:chain",
"test:platform": "turbo run test:platform",
"lint": "turbo lint",
"typecheck": "turbo typecheck",
"clean": "turbo clean",
"format": "prettier --write .",
"format:check": "prettier --check .",
"site:build": "node site/build.mjs",
"verify:enums": "tsx scripts/verify-enum-ssot.ts",
"verify:migrations": "tsx scripts/verify-migration-no-select-star.ts",
"verify:e2e-coverage": "tsx scripts/verify-e2e-coverage.ts",
"verify:agent-uat": "tsx scripts/verify-agent-uat-provider-map.ts && tsx scripts/verify-agent-uat-format.ts && tsx scripts/verify-agent-uat-index.ts && tsx scripts/verify-admin-route-consistency.ts",
"verify:agent-uat:providers": "tsx scripts/verify-agent-uat-provider-map.ts",
"verify:agent-uat:format": "tsx scripts/verify-agent-uat-format.ts",
"verify:agent-uat:index": "tsx scripts/verify-agent-uat-index.ts",
"verify:admin-routes": "tsx scripts/verify-admin-route-consistency.ts",
"validate:openapi": "tsx scripts/validate-openapi.ts",
"generate:api-types": "tsx scripts/generate-api-types.ts",
"check:api-types-freshness": "tsx scripts/check-api-types-freshness.ts",
"check:api-contract": "tsx scripts/check-api-contract.ts",
"test:smoke": "bash scripts/smoke-test-published.sh"
},
"devDependencies": {
"@apidevtools/swagger-parser": "^12.1.0",
"@eslint/js": "^9.19.0",
"@types/swagger-schema-official": "^2.0.25",
"@vitest/coverage-v8": "^3.0.0",
"eslint": "^9.19.0",
"eslint-config-prettier": "^10.0.0",
"gray-matter": "^4.0.3",
"highlight.js": "^11.11.1",
"marked": "^17.0.4",
"marked-highlight": "^2.2.3",
"openapi-typescript": "^7.13.0",
"prettier": "^3.4.0",
"tsx": "^4.21.0",
"turbo": "^2.4.0",
"typescript": "^5.7.0",
"typescript-eslint": "^8.22.0",
"vitest": "^3.0.0",
"zod": "^3.24.0"
},
"version": "2.14.0",
"pnpm": {
"overrides": {
"uuid": "^11.1.0",
"openclaw": ">=2026.3.28"
},
"packageExtensions": {
"jayson@*": {
"dependencies": {
"uuid": "^11.1.0"
}
}
}
}
}