forked from chili-publish/publisher-interface
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
69 lines (69 loc) · 2.04 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
{
"name": "@chili-publish/publisher-interface",
"version": "0.3.4",
"author": "chili-publish",
"description": "PublisherInterface is a class object that allows you to interact with the CHILI Publisher editorObject via postMessage without the complexity of postMessage.",
"repository": {
"type": "git",
"url": "git://github.com/chili-publish/publisher-interface.git"
},
"license": "MIT",
"source": "./src/PublisherInterface.ts",
"main": "./lib/PublisherInterface.js",
"types": "./lib/PublisherInterface.d.ts",
"web-wrapper": "./dist/chiliInternalWrapper.min.js",
"web-connector": "./dist/PublisherInterface.min.js",
"targets": {
"main": {
"sourceMap": false
},
"types": {
"sourceMap": false
},
"web-wrapper": {
"context": "browser",
"engines": {
"browsers": "last 2 Chrome version, last 2 Firefox version, last 2 Safari version, last 2 Edge version"
},
"outputFormat": "global",
"includeNodeModules": true,
"source": "./onServer/chiliInternalWrapper.ts"
},
"web-connector": {
"context": "browser",
"outputFormat": "esmodule",
"engines": {
"browsers": "last 2 Chrome version, last 2 Firefox version, last 2 Safari version, last 2 Edge version"
},
"optimize": true,
"includeNodeModules": true,
"isLibrary": true
}
},
"files": [
"dist/**",
"lib/**"
],
"devDependencies": {
"@parcel/packager-ts": "^2.7.0",
"@parcel/transformer-typescript-tsc": "^2.7.0",
"@parcel/transformer-typescript-types": "^2.7.0",
"@playwright/test": "^1.27.1",
"@types/node": "^18.11.2",
"@typescript-eslint/eslint-plugin": "^5.27.0",
"@typescript-eslint/parser": "^5.27.0",
"eslint": "^8.16.0",
"parcel": "^2.7.0",
"playwright": "^1.27.1",
"typedoc": "^0.22.17",
"typescript": "^4.7.2"
},
"dependencies": {
"penpal": "^6.2.1"
},
"scripts": {
"build": "parcel build",
"build-docs": "typedoc ./src/PublisherInterface.ts",
"test": "node ./test/run_tests.js"
}
}