-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.09 KB
/
Copy pathpackage.json
File metadata and controls
50 lines (50 loc) · 1.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
{
"name": "@the_c1oud/themis",
"module": "src/index.ts",
"version": "0.2.1",
"description": "A simplification of the Openapi spec for Javascript.",
"author": "The_C1oud <50553458+dullkingsman@users.noreply.github.com>",
"main": "lib/index.js",
"typings": "lib/index.d.ts",
"keywords": [
"api",
"restful",
"rest",
"openapi",
"swagger",
"themis",
"jthemis"
],
"repository": {
"type": "git",
"url": "https://github.com/dullkingsman/themis"
},
"homepage": "https://github.com/dullkingsman/themis#readme",
"scripts": {
"format": "prettier --write \"./**/*.(t|j)s\"",
"build": "tsc"
},
"devDependencies": {
"@tsconfig/node16": "^16.1.1",
"@types/lodash": "^4.14.200",
"@types/node": "^20.9.0",
"bun-types": "latest",
"husky": "^8.0.3",
"prettier": "^3.0.3",
"typescript": "^5.2.2"
},
"dependencies": {
"chalk": "4.1.2",
"lodash": "^4.17.21",
"ts-deepmerge": "^6.2.0"
},
"files": [
"lib/**/*"
],
"husky": {
"hooks": {
"pre-commit": "bun run format"
}
},
"license": "MIT"
}