-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.25 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.25 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
{
"name": "ube-tsp",
"version": "0.0.4",
"description": "A monorepo containing TypeSpec tools: emitter and Ky HTTP client generator",
"type": "module",
"keywords": [
"typespec",
"typescript",
"emitter",
"codegen",
"alloy-js",
"openapi",
"operation-emitter",
"http",
"rest-api",
"ky",
"monorepo"
],
"author": "Michael Chris Lopez",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/your-username/ube-tsp.git"
},
"bugs": {
"url": "https://github.com/your-username/ube-tsp/issues"
},
"homepage": "https://github.com/your-username/ube-tsp#readme",
"devDependencies": {
"@alloy-js/cli": "^0.22.0",
"@changesets/cli": "^2.29.8",
"@eslint/js": "^9.39.0",
"@types/node": "latest",
"eslint": "^9.39.2",
"prettier": "^3.8.1",
"typescript": "^5.9.3",
"typescript-eslint": "^8.54.0",
"vitest": "^4.0.18"
},
"scripts": {
"build": "pnpm -r run build",
"test": "pnpm -r run test",
"lint": "pnpm -r run lint",
"format": "prettier . --write",
"format:check": "prettier --check .",
"changeset": "changeset",
"version": "changeset version",
"release": "changeset publish"
},
"packageManager": "pnpm@10.28.0"
}