-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
28 lines (28 loc) · 977 Bytes
/
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
{
"name": "fcitx5-keyboard-web",
"type": "module",
"private": true,
"license": "GPL-3.0-or-later",
"scripts": {
"lint": "eslint && stylelint src/*.css harmony/*.css preview/*.css",
"lint:fix": "eslint --fix && stylelint --fix src/*.css harmony/*.css preview/*.css",
"check": "tsc --noEmit",
"dev": "rimraf .parcel-cache && parcel preview/index.html",
"build:harmony": "rimraf .parcel-cache && parcel build harmony/index.html",
"build:preview": "rimraf .parcel-cache && parcel build --dist-dir dist/preview preview/index.html",
"test": "playwright test"
},
"devDependencies": {
"@antfu/eslint-config": "^4.2.1",
"@parcel/transformer-inline-string": "2.13.3",
"@playwright/test": "^1.50.1",
"@types/node": "^22.13.4",
"eslint": "^9.20.1",
"parcel": "^2.13.3",
"rimraf": "^6.0.1",
"stylelint": "^16.14.1",
"stylelint-config-standard-scss": "^14.0.0",
"svgo": "^3",
"typescript": "^5.7.3"
}
}