-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 862 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 862 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": "@libreservice/my-worker",
"version": "0.4.2",
"main": "dist/index.js",
"type": "module",
"files": [
"src",
"dist"
],
"homepage": "https://github.com/LibreService/my_worker",
"author": {
"name": "Qijia Liu",
"email": "liumeo@pku.edu.cn",
"url": "https://github.com/eagleoflqj"
},
"license": "AGPL-3.0-or-later",
"scripts": {
"lint": "eslint --ext .ts,.mjs src demo",
"lint:fix": "eslint --ext .ts,.mjs --fix src demo",
"check": "tsc --noEmit",
"build": "rm -rf dist && node scripts/build.mjs && tsc -d --emitDeclarationOnly"
},
"sideEffects": false,
"devDependencies": {
"@libreservice/wasm-code": "^0.1.1",
"@typescript-eslint/eslint-plugin": "^6.0.0",
"esbuild": "^0.18.13",
"eslint": "^8.45.0",
"eslint-config-standard": "^17.1.0",
"typescript": "^5.1.6"
}
}