-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
42 lines (42 loc) · 1.14 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
{
"name": "@libreservice/micro-plum",
"version": "0.2.3",
"main": "dist/index.js",
"type": "module",
"files": [
"src",
"dist"
],
"homepage": "https://github.com/LibreService/micro_plum",
"author": {
"name": "Qijia Liu",
"email": "[email protected]",
"url": "https://github.com/eagleoflqj"
},
"license": "LGPL-3.0-or-later",
"scripts": {
"lint": "eslint --ext .ts,.mjs scripts src test",
"lint:fix": "eslint --ext .ts,.mjs --fix scripts src test",
"check": "tsc --noEmit",
"build": "rm -rf dist && node scripts/build.mjs && tsc -d --emitDeclarationOnly",
"coverage": "vitest run --coverage.enabled --coverage.all=false test/"
},
"sideEffects": false,
"devDependencies": {
"@types/js-yaml": "^4.0.9",
"@types/luaparse": "^0.2.12",
"@typescript-eslint/eslint-plugin": "^7.16.1",
"@vitest/coverage-v8": "^2.0.3",
"esbuild": "^0.23.0",
"eslint": "^8.57.0",
"eslint-config-standard": "^17.1.0",
"js-yaml": "^4.1.0",
"luaparse": "^0.3.1",
"typescript": "^5.5.3",
"vitest": "^2.0.3"
},
"peerDependencies": {
"js-yaml": "^4.1.0",
"luaparse": "^0.3.1"
}
}