@vidispine/vdt-api 21.3.0 → 22.1.0-pre.1

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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vidispine/vdt-api",
3
- "version": "21.3.0",
3
+ "version": "22.1.0-pre.1",
4
4
  "description": "Vidispine API bindings",
5
5
  "author": "Alex Jennings <alexjennings@users.noreply.github.com>",
6
6
  "homepage": "https://vidispine.github.io/vdt-api",
@@ -12,38 +12,45 @@
12
12
  "url": "git@github.com:vidispine/vdt-api.git"
13
13
  },
14
14
  "scripts": {
15
- "build": "rollup -c",
16
- "build:watch": "rollup -c -w",
15
+ "build": "rm -rf dist/* && rollup -c",
16
+ "build:watch": "rm -rf dist/* && rollup -c -w --environment DEVELOPMENT",
17
17
  "docs:watch": "yarn documentation serve 'src/**' --watch",
18
18
  "predocs:deploy": "yarn documentation build 'src/**' -f html -o build",
19
19
  "docs:deploy": "gh-pages -d build -r ${npm_package_repository_url}",
20
- "lint": "eslint --ext .js ./src",
21
- "lint:fix": "eslint --fix --ext .js --ignore-pattern *.stories.js ./src"
20
+ "lint": "eslint \"./{src/**/*,*}.{js,md}\"",
21
+ "lint:fix": "yarn lint --fix"
22
22
  },
23
23
  "dependencies": {
24
- "axios": "~0.21.x"
24
+ "@babel/runtime": "^7.17.0",
25
+ "axios": "~0.21.x",
26
+ "buffer": "^6.0.3"
25
27
  },
26
28
  "devDependencies": {
27
- "@babel/core": "^7.8.3",
28
- "@babel/plugin-external-helpers": "^7.8.3",
29
- "@babel/preset-env": "^7.8.3",
30
- "@vidispine/eslint-config-base": "^21.3.0",
31
- "@vidispine/prettier-config": "^21.3.0",
32
- "documentation": "^12.1.4",
29
+ "@babel/core": "^7.17.0",
30
+ "@babel/plugin-external-helpers": "^7.16.7",
31
+ "@babel/plugin-transform-runtime": "^7.17.0",
32
+ "@babel/preset-env": "^7.16.11",
33
+ "@rollup/plugin-babel": "^5.3.0",
34
+ "@rollup/plugin-commonjs": "^21.0.1",
35
+ "@rollup/plugin-node-resolve": "^13.1.3",
36
+ "@storybook/addon-docs": "^6.4.18",
37
+ "@vidispine/eslint-config-base": "^22.1.0-pre.1",
38
+ "@vidispine/eslint-config-storybook": "*",
39
+ "@vidispine/prettier-config": "^22.1.0-pre.1",
40
+ "documentation": "^13.2.5",
33
41
  "gh-pages": "^3.2.3",
34
- "rollup": "^1.29.0",
35
- "rollup-plugin-babel": "^4.3.3",
36
- "rollup-plugin-commonjs": "^10.1.0",
37
- "rollup-plugin-node-resolve": "^5.2.0",
38
- "rollup-plugin-peer-deps-external": "^2.2.0"
42
+ "rollup": "^2.67.0",
43
+ "rollup-plugin-peer-deps-external": "^2.2.4"
39
44
  },
40
45
  "files": [
41
46
  "dist"
42
47
  ],
43
48
  "eslintConfig": {
44
49
  "extends": [
45
- "@vidispine/eslint-config-base"
50
+ "@vidispine/eslint-config-base",
51
+ "@vidispine/eslint-config-storybook"
46
52
  ]
47
53
  },
48
- "prettier": "@vidispine/prettier-config"
49
- }
54
+ "prettier": "@vidispine/prettier-config",
55
+ "gitHead": "9e1d15560719544a68e6bc881e1a40901fe9f786"
56
+ }