-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 1.85 KB
/
package.json
File metadata and controls
77 lines (77 loc) · 1.85 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
{
"name": "@ube-tsp/ky-emitter",
"version": "0.1.2",
"description": "A TypeSpec emitter that generates TypeScript operation files with flat structure using Alloy-JS",
"type": "module",
"main": "dist/src/main.js",
"exports": {
".": {
"types": "./dist/src/main.d.ts",
"default": "./dist/src/main.js"
}
},
"typespec": {
"compilerVersion": "1.1.0",
"emitters": {
".": {
"name": "@ube-tsp/ky-emitter"
}
}
},
"files": [
"dist/src/**/*",
"README.md",
"LICENSE"
],
"keywords": [
"typespec",
"typescript",
"emitter",
"codegen",
"alloy-js",
"openapi",
"operation-emitter",
"http",
"rest-api"
],
"author": "Michael Chris Lopez",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/your-username/ube-tsp.git",
"directory": "packages/ky-emitter"
},
"bugs": {
"url": "https://github.com/your-username/ube-tsp/issues"
},
"homepage": "https://github.com/your-username/ube-tsp/tree/main/packages/ky-emitter#readme",
"peerDependencies": {
"@alloy-js/core": "^0.18.0",
"@alloy-js/typescript": "^0.18.0",
"@typespec/compiler": "^1.1.0",
"@typespec/emitter-framework": "^0.9.0"
},
"devDependencies": {
"@alloy-js/rollup-plugin": "^0.1.0",
"@typespec/compiler": "^1.2.1",
"@typespec/http": "^1.2.1",
"@typespec/openapi": "^1.2.1"
},
"scripts": {
"build": "alloy build",
"watch": "tsc --watch",
"test": "vitest run",
"test:watch": "vitest",
"typecheck": "tsc --noEmit",
"lint": "eslint src/ tests/",
"prepublishOnly": "npm run build && npm run test && npm run lint"
},
"dependencies": {
"@alloy-js/core": "^0.22.0",
"@alloy-js/typescript": "^0.22.0",
"@typespec/emitter-framework": "^0.15.0"
},
"publishConfig": {
"access": "public"
}
}