-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 1.11 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
{
"name": "fcitx5-js",
"version": "0.1.0",
"main": "dist/Fcitx5.js",
"description": "Fcitx5 as a JavaScript library",
"type": "module",
"files": [
"page",
"dist"
],
"scripts": {
"lint": "eslint page tests",
"lint:fix": "eslint page tests --fix",
"check": "tsc --noEmit",
"build": "node scripts/build.mjs",
"prepack": "bash scripts/prepack.sh",
"postpack": "bash scripts/postpack.sh",
"preview": "serve -l 9000 -S preview",
"test": "playwright test --browser all",
"test:chromium": "playwright test --browser chromium",
"test:firefox": "playwright test --browser firefox",
"test:webkit": "playwright test --browser webkit"
},
"license": "AGPL-3.0-or-later",
"devDependencies": {
"@antfu/eslint-config": "^3.12.1",
"@playwright/test": "^1.50.1",
"@types/node": "^22.13.5",
"@types/textarea-caret": "^3.0.3",
"@types/uzip": "^0.20201231.2",
"error-stack-parser": "^2.1.4",
"esbuild": "^0.24.2",
"eslint": "^9.17.0",
"serve": "^14.2.4",
"textarea-caret": "^3.1.0",
"typescript": "^5.7.2",
"uzip": "^0.20201231.0"
}
}