-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
71 lines (71 loc) · 2.49 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
70
71
{
"name": "@riboseinc/paneron-extension-glossarist",
"version": "2.0.22",
"description": "Paneron extension for maintaining terminology glossaries",
"main": "plugin.js",
"repository": "https://github.com/riboseinc/paneron-extension-documentation-site",
"author": {
"name": "Ribose Inc.",
"email": "[email protected]"
},
"paneronExtension": {
"title": "Glossarist",
"iconURL": "https://www.glossarist.org/SymbolLoupe.png",
"featured": true,
"requiredHostAppVersion": "^2.2.0"
},
"scripts": {
"dist": "yarn clean && yarn compile && yarn prepare-dist && yarn dist-legacy && yarn dist-new",
"prepare-dist": "mkdir dist; cp package.json dist/; rsync -a --include '*/' --include '*.ts' --include '*.mts' --include '*.tsx' --exclude '*' src/ dist/",
"compile": "tsc --outDir compiled",
"dist-legacy": "babel compiled --out-dir dist; rsync -a --include '*/' --include '*.d.ts' --include '*.js.map' --exclude '*' compiled/ dist/",
"dist-new": "esbuild src/plugin.ts --outfile=dist/extension.js --format=esm --bundle \"--external:@riboseinc/*\" \"--external:react-mathjax2\" \"--external:react-dom\" \"--external:react\" \"--external:liquidjs\" \"--external:@blueprintjs/*\" \"--external:@emotion/*\" \"--external:immutability-helper\" --minify=false --sourcemap=inline --target=chrome94",
"clean": "rm -rf compiled dist"
},
"files": [
"README.adoc",
"*.js",
"*.ts",
"*.tsx",
"*.js.map",
"*.d.ts",
"migrations/**/*.js",
"migrations/**/*.ts",
"migrations/**/*.tsx",
"migrations/**/*.js.map",
"migrations/**/*.d.ts",
"models/**/*.js",
"models/**/*.ts",
"models/**/*.tsx",
"models/**/*.js.map",
"models/**/*.d.ts",
"classes/**/*.js",
"classes/**/*.ts",
"classes/**/*.tsx",
"classes/**/*.js.map",
"classes/**/*.d.ts"
],
"resolutions": {
"@types/react": "17.0.53"
},
"devDependencies": {
"@babel/cli": "^7.1.5",
"@babel/core": "^7.4.0",
"@babel/preset-env": "^7.4.2",
"@blueprintjs/core": "~4.17.8",
"@blueprintjs/icons": "~4.14.5",
"@blueprintjs/popover2": "~1.13.12",
"@emotion/react": "^11.10.6",
"@emotion/styled": "^11.10.6",
"@riboseinc/paneron-extension-kit": "2.2.21",
"@riboseinc/paneron-registry-kit": "2.2.33",
"@types/react": "17.0.53",
"@types/webpack-env": "^1.16.0",
"esbuild": "0.19.4",
"liquidjs": "^9.25.0",
"react": "^17.0.2",
"react-mathjax2": "^0.0.2",
"typescript": "~4.6.0"
},
"license": "MIT"
}