-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 991 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 991 Bytes
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
{
"name": "bob-plugin-template",
"version": "1.0.0",
"description": "Template project for building Bob translate plugin.",
"type": "module",
"license": "MIT",
"main": "dist/main.js",
"keywords": [
"bob-plugin",
"template",
"translator"
],
"homepage": "https://github.com/liby/bob-plugin-template",
"scripts": {
"prebuild": "./scripts/check_version.sh",
"build": "rollup --config rollup.config.ts --configPlugin typescript",
"bump": "pnpm run build && node ./scripts/release.cjs"
},
"devDependencies": {
"@bob-translate/types": "1.0.2",
"@rollup/plugin-terser": "0.4.4",
"@rollup/plugin-typescript": "11.1.6",
"rollup": "4.20.0",
"rollup-plugin-copy": "3.5.0",
"tslib": "2.6.3",
"typescript": "5.5.4"
},
"engines": {
"node": ">=20"
},
"packageManager": "[email protected]+sha512.dc09430156b427f5ecfc79888899e1c39d2d690f004be70e05230b72cb173d96839587545d09429b55ac3c429c801b4dc3c0e002f653830a420fa2dd4e3cf9cf"
}