-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
78 lines (78 loc) · 2.09 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
{
"name": "typespec-postgres",
"type": "module",
"version": "0.1.2",
"description": "Unofficial TypeSpec Library to be able to emit Postgres Schema of models",
"main": "dist/src/index.js",
"homepage": "https://github.com/NielsCo/typespec-postgres",
"tspMain": "lib/postgres.tsp",
"repository": {
"type": "git",
"url": "https://github.com/NielsCo/typespec-postgres.git"
},
"private": false,
"scripts": {
"clean": "rimraf ./dist ./temp",
"build": "tsc -p . && npm run lint-typespec-library",
"watch": "tsc -p . --watch",
"lint-typespec-library": "tsp compile . --warn-as-error --import @typespec/library-linter --no-emit",
"test": "mocha",
"test-official": "c8 mocha --forbid-only --reporter mocha-multi-reporters",
"lint": "eslint . --ext .ts --max-warnings=0",
"lint:fix": "eslint . --fix --ext .ts"
},
"author": "Niels Hanselmann",
"license": "MIT",
"exports": {
".": "./dist/src/index.js",
"./testing": "./dist/src/testing/index.js"
},
"files": [
"lib/*.tsp",
"dist/**",
"!dist/test/**",
"LICENSE",
"README.md",
"package.json"
],
"typesVersions": {
"*": {
"*": [
"./dist/src/index.d.ts"
],
"testing": [
"./dist/src/testing/index.d.ts"
]
}
},
"engines": {
"node": ">=16.0.0"
},
"dependencies": {
},
"peerDependencies": {
"@typespec/compiler": "^0.47.1",
"@typespec/http": "~0.47.0",
"@typespec/openapi": "~0.47.0",
"@typespec/openapi3": "~0.47.0",
"@typespec/rest": "~0.47.0",
"@typespec/versioning": "~0.47.0"
},
"devDependencies": {
"@types/js-yaml": "~4.0.5",
"@types/mocha": "~10.0.1",
"@types/node": "~20.3.1",
"@types/prettier": "^2.7.3",
"@typespec/eslint-config-typespec": "~0.47.0",
"@typespec/eslint-plugin": "~0.47.0",
"@typespec/library-linter": "~0.47.0",
"c8": "~8.0.0",
"eslint": "^8.43.0",
"mocha": "~10.2.0",
"mocha-junit-reporter": "~2.2.0",
"mocha-multi-reporters": "~1.5.1",
"rimraf": "~5.0.1",
"source-map-support": "^0.5.21",
"typescript": "~5.1.3"
}
}