-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
92 lines (92 loc) · 2.94 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
80
81
82
83
84
85
86
87
88
89
90
91
92
{
"name": "cvat-sdk",
"version": "2.9.2",
"description": "CVAT SDK is a Javascript library. It provides you access to Javascript functions and objects that simplify server interaction and provide additional functionality like data validation and serialization.",
"repository": {
"type": "git",
"url": "https://github.com/subho57/cvat-sdk.git"
},
"homepage": "https://subho57.github.io/cvat-sdk",
"sideEffects": false,
"publishConfig": {
"access": "public"
},
"bugs": {
"url": "https://github.com/subho57/cvat-sdk/issues"
},
"keywords": [
"cvat-sdk",
"cvat-sdk-js",
"typescript",
"cvat",
"cvat annotation tool",
"OpenVINO CVAT",
"subho57"
],
"source": "src/index.ts",
"main": "./dist/index.js",
"module": "./dist/index.modern.mjs",
"unpkg": "./dist/index.umd.js",
"umd:main": "./dist/index.umd.js",
"types": "dist/index.d.ts",
"typings": "dist/index.d.ts",
"amdName": "CVAT",
"engines": {
"node": ">=18.0.0",
"yarn": ">=3.3.0"
},
"scripts": {
"build-types": "tsc --noEmit --pretty",
"build:naive": "rimraf docs dist && tsc && mv dist/src/* ./dist/ && rimraf dist/src && typedoc src/index.ts",
"build": "rimraf docs dist && microbundle --target node -f cjs,modern --visualize src/*.ts && microbundle --target web -f umd --external none && typedoc src/index.ts && cp stats.html docs",
"start": "microbundle watch",
"prepare": "husky install && npm i -g yarn",
"postinstall": "husky install",
"prepack": "pinst --disable",
"postpack": "pinst --enable",
"clean-install": "rm -rf node_modules yarn.lock && yarn install",
"test": "env-cmd jest > test-report.log && echo 'Test Report: ./test-report.log'",
"test:build": "run-s build",
"lint": "eslint --ext .js,.ts .",
"lint-fix": "eslint --fix --ext .js,.ts ."
},
"author": "subho57",
"license": "MIT",
"packageManager": "[email protected]",
"dependencies": {
"axios": "^0.27.2"
},
"devDependencies": {
"@commitlint/cli": "^17.6.6",
"@commitlint/config-conventional": "^17.6.6",
"@types/jest": "^29.5.2",
"@types/lodash": "^4.14.195",
"@typescript-eslint/eslint-plugin": "^5.60.1",
"@typescript-eslint/parser": "^5.60.1",
"env-cmd": "^10.1.0",
"eslint": "^8.44.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jest": "^27.2.2",
"eslint-plugin-jest-formatting": "^3.1.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-simple-import-sort": "^10.0.0",
"eslint-plugin-unused-imports": "^2.0.0",
"gh-pages": "^5.0.0",
"husky": "^8.0.3",
"jest": "^29.5.0",
"lint-staged": "^13.2.3",
"microbundle": "^0.15.1",
"pinst": "^3.0.0",
"prettier": "^2.8.8",
"rimraf": "^5.0.1",
"ts-jest": "^29.1.1",
"typedoc": "^0.24.8",
"typescript": "^4.0"
},
"files": [
"dist"
]
}