datocms-plugin-sdk 0.2.0-alpha.65

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,45 @@
1
+ {
2
+ "name": "datocms-plugin-sdk",
3
+ "version": "0.2.0-alpha.65",
4
+ "description": "DatoCMS Plugin SDK",
5
+ "keywords": [
6
+ "datocms",
7
+ "plugin",
8
+ "sdk"
9
+ ],
10
+ "author": "Stefano Verna <s.verna@datocms.com>",
11
+ "homepage": "https://github.com/datocms/plugins-sdk/tree/master/packages/sdk#readme",
12
+ "license": "MIT",
13
+ "main": "dist/cjs/index.js",
14
+ "module": "dist/esm/index.js",
15
+ "typings": "dist/types/index.d.ts",
16
+ "sideEffects": false,
17
+ "directories": {
18
+ "lib": "dist",
19
+ "test": "__tests__"
20
+ },
21
+ "files": [
22
+ "dist",
23
+ "sistema",
24
+ "types.json"
25
+ ],
26
+ "repository": {
27
+ "type": "git",
28
+ "url": "git+https://github.com/datocms/plugins-sdk.git"
29
+ },
30
+ "scripts": {
31
+ "build": "tsc && tsc --project ./tsconfig.esnext.json && npm run generate-typedoc",
32
+ "generate-typedoc": "typedoc src/index.ts --json types.json",
33
+ "prebuild": "rimraf dist"
34
+ },
35
+ "bugs": {
36
+ "url": "https://github.com/datocms/plugins-sdk/issues"
37
+ },
38
+ "dependencies": {
39
+ "penpal": "^4.1.1"
40
+ },
41
+ "devDependencies": {
42
+ "typedoc": "^0.22.8"
43
+ },
44
+ "gitHead": "144a9c07b6c627c967189e21531f298c539dfcd1"
45
+ }