forked from microsoft/typespec
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
83 lines (83 loc) · 2.42 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
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
78
79
80
81
82
83
{
"name": "@typespec/http",
"version": "0.61.0",
"author": "Microsoft Corporation",
"description": "TypeSpec HTTP protocol binding",
"homepage": "https://github.com/microsoft/typespec",
"docusaurusWebsite": "https://typespec.io/docs",
"readme": "https://github.com/microsoft/typespec/blob/main/README.md",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/microsoft/typespec.git"
},
"bugs": {
"url": "https://github.com/microsoft/typespec/issues"
},
"keywords": [
"typespec"
],
"type": "module",
"main": "dist/src/index.js",
"tspMain": "lib/http.tsp",
"exports": {
".": {
"typespec": "./lib/http.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"
},
"./streams": {
"typespec": "./lib/streams/main.tsp",
"types": "./dist/src/streams/index.d.ts",
"default": "./dist/src/streams/index.js"
}
},
"engines": {
"node": ">=18.0.0"
},
"scripts": {
"clean": "rimraf ./dist ./temp",
"build": "npm run gen-extern-signature && tsc -p . && npm run lint-typespec-library",
"watch": "tsc -p . --watch",
"gen-extern-signature": "tspd --enable-experimental gen-extern-signature .",
"lint-typespec-library": "tsp compile . --warn-as-error --import @typespec/library-linter --no-emit",
"test": "vitest run",
"test:watch": "vitest -w",
"test:ui": "vitest --ui",
"test:ci": "vitest run --coverage --reporter=junit --reporter=default",
"lint": "eslint . --max-warnings=0",
"lint:fix": "eslint . --fix",
"regen-docs": "tspd doc . --enable-experimental --output-dir ../../docs/libraries/http/reference"
},
"files": [
"lib/**/*.tsp",
"dist/**",
"!dist/test/**"
],
"peerDependencies": {
"@typespec/compiler": "workspace:~",
"@typespec/streams": "workspace:~"
},
"peerDependenciesMeta": {
"@typespec/streams": {
"optional": true
}
},
"devDependencies": {
"@types/node": "~22.7.5",
"@typespec/compiler": "workspace:~",
"@typespec/library-linter": "workspace:~",
"@typespec/streams": "workspace:~",
"@typespec/tspd": "workspace:~",
"@vitest/coverage-v8": "^2.1.2",
"@vitest/ui": "^2.1.2",
"c8": "^10.1.2",
"rimraf": "~6.0.1",
"typescript": "~5.6.3",
"vitest": "^2.1.2"
}
}