@vidispine/api 23.4.0-pre.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json ADDED
@@ -0,0 +1,76 @@
1
+ {
2
+ "name": "@vidispine/api",
3
+ "version": "23.4.0-pre.2",
4
+ "license": "SEE LICENSE IN LICENSE.md",
5
+ "publishConfig": {
6
+ "access": "public"
7
+ },
8
+ "description": "Typescript API for VidiCore",
9
+ "homepage": "https://vidispine.github.io/vdt/?path=/docs/api",
10
+ "repository": {
11
+ "type": "git",
12
+ "url": "https://github.com/vidispine/vdt.git",
13
+ "directory": "packages/api"
14
+ },
15
+ "type": "module",
16
+ "types": "./dist/index.d.ts",
17
+ "main": "./dist/index.umd.cjs",
18
+ "module": "./dist/index.js",
19
+ "exports": {
20
+ ".": {
21
+ "import": "./dist/index.js",
22
+ "require": "./dist/index.umd.cjs"
23
+ }
24
+ },
25
+ "files": [
26
+ "dist"
27
+ ],
28
+ "scripts": {
29
+ "build": "yarn vite build",
30
+ "build:watch": "yarn vite build --watch --mode development",
31
+ "build:docs": "yarn typedoc --out ../../docs/build/api",
32
+ "update:docs": "yarn typedoc --logLevel Error && echo \"api docs updated\"",
33
+ "start:docs": "rimraf build/docs && yarn update:docs && yarn vite serve -c vite.docs.config",
34
+ "type-check": "tsc --noEmit --emitDeclarationOnly false",
35
+ "typedoc-check": "yarn typedoc --emit none --treatWarningsAsErrors --validation.invalidLink true --validation.notExported true --validation.notDocumented true",
36
+ "lint": "yarn type-check && eslint . --cache --max-warnings=0 --ext .js,.jsx,.ts,.tsx,.md,.mdx",
37
+ "format": "prettier . --check"
38
+ },
39
+ "dependencies": {
40
+ "@vidispine/types": "23.4.0-pre.2"
41
+ },
42
+ "peerDependencies": {
43
+ "axios": "^1.1.3",
44
+ "buffer": "^6.0.0"
45
+ },
46
+ "devDependencies": {
47
+ "@vidispine/eslint-config-base": "23.4.0-pre.2",
48
+ "@vidispine/eslint-config-mdx": "23.4.0-pre.2",
49
+ "@vidispine/eslint-config-storybook": "23.4.0-pre.2",
50
+ "@vidispine/eslint-config-typescript": "23.4.0-pre.2",
51
+ "@vidispine/tests": "23.4.0-pre.2",
52
+ "axios": "1.5.0",
53
+ "buffer": "6.0.3",
54
+ "concurrently": "7.6.0",
55
+ "eslint": "8.48.0",
56
+ "prettier": "2.8.8",
57
+ "rimraf": "3.0.2",
58
+ "typedoc": "0.23.28",
59
+ "typedoc-plugin-missing-exports": "1.0.0",
60
+ "typescript": "4.9.5",
61
+ "vite": "4.4.9",
62
+ "vite-plugin-dts": "3.5.3"
63
+ },
64
+ "eslintConfig": {
65
+ "extends": [
66
+ "@vidispine/eslint-config-base",
67
+ "@vidispine/eslint-config-mdx",
68
+ "@vidispine/eslint-config-storybook"
69
+ ],
70
+ "ignorePatterns": [
71
+ "vite.config.ts",
72
+ "vite.docs.config.ts"
73
+ ]
74
+ },
75
+ "prettier": "@vidispine/prettier-config"
76
+ }