-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.45 KB
/
package.json
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
{
"name": "typespec-typescript-emitter",
"version": "1.0.0",
"description": "A TypeSpec library providing an emitter that generates TypeScript types and a structured routes object for robust importing",
"homepage": "https://github.com/crowbait/typespec-typescript-emitter#readme",
"bugs": "https://github.com/crowbait/typespec-typescript-emitter/issues",
"license": "MIT",
"author": {
"name": "Crowbait",
"url": "https://github.com/crowbait"
},
"type": "module",
"main": "dist/src/index.js",
"exports": {
".": {
"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"
}
},
"devDependencies": {
"@types/node": "latest",
"eslint": "^9.15.0",
"husky": "^9.1.6",
"prettier": "^3.0.3",
"rimraf": "^6.0.1",
"typescript": "^5.3.3",
"typescript-eslint": "^8.15.0"
},
"peerDependencies": {
"@typespec/compiler": "0.x",
"@typespec/http": "0.x"
},
"scripts": {
"build": "rimraf dist && tsc",
"watch": "tsc --watch",
"test": "npm run build && node --test",
"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 .",
"prepare": "husky",
"prepublishOnly": "npm run build"
}
}