This repository has been archived by the owner on Jan 31, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
75 lines (75 loc) · 1.77 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
{
"version": "0.1.12",
"name": "@intervene/parser",
"main": "lib/main/index.js",
"typings": "lib/main/index.d.ts",
"module": "lib/module/index.js",
"files": [
"lib/main",
"lib/module",
"!**/*.spec.*",
"!**/*.json",
"CHANGELOG.md",
"LICENSE",
"README.md"
],
"repository": {
"type": "git",
"url": "https://github.com/intervenehq/parser"
},
"ava": {
"failFast": true,
"timeout": "60s",
"typescript": {
"rewritePaths": {
"src/": "lib/main/"
},
"compile": false
},
"files": [
"!lib/module/**"
]
},
"scripts": {
"build": "npm run build:main && npm run build:module",
"build:main": "tsc -p tsconfig.json",
"build:module": "tsc -p tsconfig.module.json",
"dev": "tsc -p tsconfig.json -w"
},
"author": {
"name": "Sudhanshu Gautam",
"email": "[email protected]"
},
"publishConfig": {
"access": "public"
},
"dependencies": {
"@apidevtools/swagger-parser": "^10.1.0",
"gpt-tokenizer": "^2.1.2",
"handlebars": "^4.7.8",
"lodash": "^4.17.21",
"object-hash": "^3.0.0",
"ora": "^7.0.1",
"sift": "^17.0.1",
"string-strip-html": "^13.4.3",
"tsx": "^3.13.0",
"zod": "^3.22.4"
},
"devDependencies": {
"@ianvs/prettier-plugin-sort-imports": "^4.1.0",
"@types/json-schema": "^7.0.13",
"@types/lodash": "^4.14.199",
"@types/node": "^20.8.10",
"@types/object-hash": "^3.0.4",
"@typescript-eslint/eslint-plugin": "^6.7.5",
"@typescript-eslint/parser": "^6.7.5",
"bun-types": "^1.0.11",
"eslint": "^8.51.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-prettier": "^5.0.0",
"openapi-types": "^12.1.3",
"prettier": "^3.0.3",
"type-fest": "^4.3.3",
"typescript": "^5.2.2"
}
}