-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 2.03 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 2.03 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
{
"name": "skir-python-gen",
"version": "1.0.9",
"description": "",
"keywords": [],
"repository": {
"type": "git",
"url": "git+https://github.com/gepheum/skir-python-gen.git"
},
"license": "ISC",
"author": "Tyler Fibonacci <gepheum@gmail.com>",
"type": "module",
"exports": {
".": {
"import": "./dist/index.js"
}
},
"module": "./dist/index.js",
"files": [
"dist",
"src"
],
"scripts": {
"build": "tsc",
"format-skir": "cd e2e-test && skir format && cd ..",
"format-skir:check": "cd e2e-test && skir format --ci && cd ..",
"format-python": "cd e2e-test && black . && cd ..",
"format-python:check": "cd e2e-test && black --check --diff . && cd ..",
"format": "prettier --write \"**/*.ts\" && npm run format-skir && npm run format-python",
"format:check": "prettier --check \"**/*.ts\" && npm run format-skir:check && npm run format-python:check",
"test": "npm run build && cd e2e-test && skir gen && pip install -r requirements.txt && python3 -m unittest tests/**.py && cd ..",
"test:local": "npm run build && cd e2e-test && skir gen && python3 -m venv test-env && test-env/bin/pip install -r requirements.txt && test-env/bin/python3 -m unittest tests/**.py && cd ..",
"test:cleanup": "rm -rf e2e-test/test-env",
"lint": "eslint src/**/*.ts",
"lint:fix": "eslint src/**/*.ts --fix"
},
"dependencies": {
"skir-internal": "^0.1.1",
"zod": "^4.2.1"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@types/mocha": "^10.0.10",
"@types/node": "^20.6.0",
"@typescript-eslint/eslint-plugin": "^8.56.0",
"@typescript-eslint/parser": "^8.56.0",
"buckwheat": "^1.1.2",
"eslint": "^10.0.1",
"mocha": "^11.7.5",
"prettier": "^3.2.4",
"prettier-plugin-organize-imports": "^4.2.0",
"skir": "^1.2.11",
"ts-node": "^10.9.2",
"tsx": "^4.21.0",
"typescript": "^5.2.2",
"typescript-eslint": "^8.56.0"
},
"overrides": {
"diff": "^8.0.3",
"minimatch": "^10.2.2",
"serialize-javascript": "^7.0.4"
}
}