-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
27 lines (27 loc) · 942 Bytes
/
Copy pathpackage.json
File metadata and controls
27 lines (27 loc) · 942 Bytes
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
{
"name": "@sonory/python-types",
"version": "0.1.0",
"description": "Generate Python type definitions from TypeScript shared types",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc",
"dev": "tsc --watch",
"generate": "node dist/generate-python-types.js",
"verify": "npm run build && npm run generate && npm run verify:python",
"verify:python": "python3 scripts/verify-generated-python.py",
"clean": "rm -rf dist/ && rm -rf ../../apps/python-audio-analyzer/src/types/generated/",
"lint": "oxlint src",
"lint:fix": "oxlint src --fix",
"format": "oxfmt --check src package.json",
"format:fix": "oxfmt src package.json",
"type-check": "tsc --noEmit"
},
"dependencies": {
"@sonory/shared-types": "file:../shared-types",
"typescript": "^7.0.2"
},
"devDependencies": {
"@types/node": "^24.13.3"
}
}