-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.09 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.09 KB
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
{
"name": "@openregion/tinymce-template-plugin",
"version": "1.0.0",
"description": "TinyMCE plugin used to insert custom templates",
"type": "commonjs",
"main": "dist/index.umd.js",
"browser": "dist/browser.umd.js",
"module": "dist/index.module.js",
"types": "dist/types/index.d.ts",
"source": "src/index.ts",
"browserslist": "> 2%, last 2 versions, not dead",
"files": [
"dist"
],
"scripts": {
"build": "parcel build",
"release": "npm run build && npm publish"
},
"repository": {
"type": "git",
"url": "git+https://github.com/openregion/tinymce-template-plugin.git"
},
"keywords": [
"tinymce",
"plugin",
"template",
"templates"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/openregion/tinymce-template-plugin/issues"
},
"homepage": "https://github.com/openregion/tinymce-template-plugin#readme",
"peerDependencies": {
"tinymce": "^7"
},
"devDependencies": {
"@parcel/packager-ts": "^2.9.3",
"@parcel/transformer-typescript-types": "^2.9.3",
"parcel": "^2.9.3",
"typescript": "^5.1.6"
}
}