-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.27 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.27 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
{
"name": "@typespec-community/typespec-go",
"version": "0.0.1",
"type": "module",
"main": "dist/src/index.js",
"exports": {
".": {
"typespec": "./lib/main.tsp",
"types": "./dist/src/index.d.ts",
"default": "./dist/src/index.js"
},
"./testing": {
"types": "./dist/src/testing/index.d.ts",
"default": "./dist/src/testing/index.js"
}
},
"scripts": {
"lint": "eslint src/ test/ --report-unused-disable-directives --max-warnings=0",
"lint:fix": "eslint . --report-unused-disable-directives --fix",
"format": "prettier . --write",
"format:check": "prettier --check ."
},
"devDependencies": {
"@alloy-js/cli": "^0.23.0",
"@alloy-js/core": "^0.23.1",
"@alloy-js/go": "^0.3.0",
"@types/node": "latest",
"@typescript-eslint/eslint-plugin": "^8.59.3",
"@typescript-eslint/parser": "^8.59.3",
"@typespec/compiler": "1.12.0",
"@typespec/emitter-framework": "^0.17.0",
"@typespec/http": "1.12.0",
"eslint": "^10.4.0",
"prettier": "^3.8.3",
"typescript": "^6.0.3"
},
"peerDependencies": {
"@alloy-js/core": "^0.23.1",
"@alloy-js/typescript": "^0.23.0",
"@typespec/compiler": "1.12.0",
"@typespec/emitter-framework": "^0.17.0",
"@typespec/http": "1.12.0"
}
}