-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 2.49 KB
/
Copy pathpackage.json
File metadata and controls
68 lines (68 loc) · 2.49 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
{
"name": "@daski-io/provider",
"version": "0.1.0",
"private": true,
"description": "Minimal starter for synchronous Daski service providers",
"license": "MIT",
"type": "module",
"repository": {
"type": "git",
"url": "git+https://github.com/daski-io/provider.git"
},
"engines": {
"node": ">=24.0.0 <25"
},
"scripts": {
"dev": "node --watch --env-file-if-exists=.env --import=tsx src/bootstrap.ts",
"clean": "node -e \"require('node:fs').rmSync('dist',{recursive:true,force:true})\"",
"build": "npm run clean && tsc && npm run copy-assets",
"copy-assets": "node scripts/copy-assets.mjs",
"start": "node --env-file-if-exists=.env dist/bootstrap.js",
"daski:install-runtime": "node --env-file-if-exists=.env --import=tsx src/installRuntimeBundle.ts",
"dev:db:up": "docker compose up -d postgres",
"dev:db:stop": "docker compose stop postgres",
"doctor": "node --env-file-if-exists=.env scripts/doctor.mjs",
"try-skill": "node --import=tsx scripts/try-skill.mjs",
"docs:check": "node scripts/docs-check.mjs",
"skill:validate": "node scripts/validate-skill.mjs",
"typecheck": "tsc --noEmit",
"typecheck:test": "tsc -p tsconfig.test.json --noEmit",
"lint": "eslint src",
"lint:architecture": "node scripts/security/static-gates.mjs",
"test": "vitest",
"test:run": "vitest run",
"test:coverage": "vitest run --coverage",
"test:critical-coverage": "vitest run --config vitest.critical.config.ts --coverage",
"test:mainnet-readiness": "vitest run test/configProductionSecurity.test.ts test/providerComposition.test.ts",
"security:audit": "npm audit --audit-level=moderate && npm audit --omit=dev --audit-level=moderate",
"security:pii-scan": "node scripts/security/pii-scan.mjs",
"security:migration-smoke": "node scripts/security/migration-smoke.mjs"
},
"dependencies": {
"ajv": "8.20.0",
"express": "^5.2.1",
"pg": "^8.22.0",
"viem": "^2.55.0",
"zod": "^3.23.0"
},
"devDependencies": {
"@types/express": "^5.0.0",
"@types/node": "^24.0.0",
"@types/pg": "^8.11.0",
"@vitest/coverage-v8": "^4.1.10",
"eslint": "^9.39.5",
"eslint-import-resolver-typescript": "^3.10.1",
"eslint-plugin-import": "^2.32.0",
"tsx": "^4.23.0",
"typescript": "^5.6.0",
"typescript-eslint": "^8.63.0",
"vitest": "^4.1.10"
},
"overrides": {
"brace-expansion": "^5.0.8",
"js-yaml": "4.3.1",
"nanoid": "3.3.18",
"postcss": "^8.5.23",
"minimatch": "^10.2.5"
}
}