-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
32 lines (32 loc) · 1.01 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
{
"name": "fcitx5-webview",
"version": "0.1.0",
"description": "Candidate window for desktop, based on webview",
"type": "module",
"scripts": {
"dev": "parcel page/index.html",
"lint": "pnpm run eslint && pnpm run stylelint",
"lint:fix": "pnpm run eslint:fix && pnpm run stylelint:fix",
"eslint": "eslint page tests",
"eslint:fix": "eslint --fix page tests",
"stylelint": "stylelint page/*.scss",
"stylelint:fix": "stylelint --fix page/*.scss",
"check": "tsc --noEmit",
"clean": "rm -rf dist .parcel-cache",
"build": "parcel build page/index.html",
"test": "playwright test"
},
"license": "GPL-3.0-or-later",
"devDependencies": {
"@antfu/eslint-config": "^4.0.0",
"@parcel/transformer-sass": "^2.12.0",
"@playwright/test": "^1.47.1",
"@types/node": "^22.5.5",
"eslint": "^9.10.0",
"eslint-plugin-format": "^1.0.0",
"parcel": "^2.12.0",
"stylelint": "^16.9.0",
"stylelint-config-standard-scss": "^14.0.0",
"typescript": "^5.6.2"
}
}