-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 802 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 802 Bytes
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
{
"name": "@hyperproof/hypersync-models",
"version": "6.0.0",
"description": "Hypersync Models",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/Hyperproof/hypersync-models.git"
},
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"build": "npm run lint && tsc",
"lint": "./node_modules/eslint/bin/eslint.js 'src/**/*.{js,ts}' --max-warnings 0"
},
"engines": {
"node": "^22.0.0"
},
"dependencies": {},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "8.7.0",
"@typescript-eslint/parser": "8.7.0",
"eslint": "8.57.1",
"eslint-config-prettier": "^8.5.0",
"prettier": "^2.6.1",
"ts-node": "8.0.2",
"typescript": "5.5.4"
},
"files": [
"lib",
"package.json"
]
}