-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 2.09 KB
/
Copy pathpackage.json
File metadata and controls
59 lines (59 loc) · 2.09 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
{
"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": "dev.connorjs@gmail.com",
"url": "https://github.com/connorjs"
},
"type": "module",
"files": [
"index.js",
"swapi.openapi.yaml"
],
"exports": {
".": "./index.js"
},
"scripts": {
"prepare": "husky",
"――――――――――――――――――――――――――――― Main ―――――――――――――――――――――――――――――": "",
"build:debug": "npm-run-all -s prettier:fix tsp:compile",
"build:release": "npm-run-all -s prettier:check tsp:compile",
"―――――――――――――――――――――――――――― Tools ―――――――――――――――――――――――――――――": "",
"――――――――――――――――――――――――――― Prettier ―――――――――――――――――――――――――――": "",
"prettier:check": "prettier --ignore-unknown --check .",
"prettier:fix": "prettier --ignore-unknown --list-different --write .",
"――――――――――――――――――――――――――― TypeSpec ―――――――――――――――――――――――――――": "",
"tsp:compile": "tsp compile src"
},
"lint-staged": {
"**/*": "prettier --ignore-unknown --write"
},
"devDependencies": {
"@typespec/compiler": "^1.0.0-rc.0",
"@typespec/http": "^1.0.0-rc.0",
"@typespec/openapi": "^1.0.0-rc.0",
"@typespec/openapi3": "^1.0.0-rc.0",
"@typespec/prettier-plugin-typespec": "^1.0.0-rc.0",
"@typespec/versioning": "^0.68.0",
"husky": "^9.1.7",
"lint-staged": "^15.5.1",
"npm-run-all": "^4.1.5",
"prettier": "^3.5.3"
}
}