-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.21 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
{
"name": "swapi-typespec",
"version": "1.0.0-alpha.1",
"description": "TypeSpec representation of SWAPI: The Star Wars API.",
"keywords": [
"api",
"openapi",
"openapi3",
"star wars",
"swagger",
"swapi",
"typespec"
],
"homepage": "https://github.com/connorjs/swapi-typespec#readme",
"bugs": {
"url": "https://github.com/connorjs/swapi-typespec/issues"
},
"license": "MIT",
"author": {
"name": "Connor Sullivan",
"email": "[email protected]",
"url": "https://github.com/connorjs"
},
"type": "module",
"files": [
"index.js",
"swapi.openapi.yaml"
],
"exports": {
".": "./index.js"
},
"scripts": {
"build": "tsp compile src",
"format": "prettier -l '**/*.{json,md,tsp,yaml,yml}'",
"format:fix": "npm run format -- -w",
"prepare": "is-ci || husky install",
"release": "npm run build && npm run format"
},
"lint-staged": {
"**/*.{json,md,tsp,yaml,yml}": "prettier -w"
},
"devDependencies": {
"@typespec/compiler": "~0.47.1",
"@typespec/http": "~0.47.0",
"@typespec/openapi": "^0.47.0",
"@typespec/openapi3": "~0.47.0",
"@typespec/prettier-plugin-typespec": "~0.47.0",
"husky": "^8.0.3",
"is-ci": "^3.0.1",
"lint-staged": "^14.0.1",
"prettier": "^3.0.3"
}
}