-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
79 lines (79 loc) · 2 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
79
{
"name": "pe-sdk",
"version": "2.3.0",
"description": "The official Typescript/Javascript SDK for the Price Engine API",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.js",
"require": "./dist/index.js",
"types": "./dist/index.d.ts"
},
"./apis": {
"import": "./dist/apis.js",
"require": "./dist/apis.js",
"types": "./dist/apis.d.ts"
}
},
"repository": {
"type": "git",
"url": "https://github.com/dd3tech/pe-sdk"
},
"files": [
"dist",
"README.md"
],
"keywords": [
"Price Engine",
"Comparables",
"Price Predictor"
],
"license": "MIT",
"scripts": {
"test": "vitest run",
"build:types": "tsc",
"build": "tsup ./src --config tsup.config.ts",
"format": "prettier --write src/**/*.ts",
"format:check": "prettier --check src/**/*.ts",
"release": "semantic-release",
"prepare": "husky"
},
"dependencies": {
"cross-fetch": "4.0.0",
"dotenv": "^16.4.5",
"joi": "^17.13.3"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "5.62.0",
"@typescript-eslint/parser": "5.62.0",
"eslint": "8.56.0",
"eslint-config-prettier": "8.10.0",
"eslint-plugin-prettier": "5.2.1",
"@commitlint/cli": "^19.3.0",
"@commitlint/config-conventional": "^19.2.2",
"@semantic-release/changelog": "6.0.3",
"@semantic-release/commit-analyzer": "12.0.0",
"@semantic-release/git": "10.0.1",
"@semantic-release/github": "10.0.5",
"@semantic-release/npm": "12.0.1",
"@semantic-release/release-notes-generator": "13.0.0",
"@types/node": "18.11.18",
"@types/node-fetch": "2.6.11",
"husky": "^9.1.1",
"lint-staged": "^15.2.7",
"prettier": "3.2.5",
"semantic-release": "23.1.1",
"ts-node": "10.9.2",
"tsup": "8.0.2",
"typescript": "5.4.5",
"vitest": "1.6.0"
},
"lint-staged": {
"**/*.ts": [
"eslint --max-warnings=0",
"prettier --write"
]
}
}