-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 837 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 837 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
33
34
35
{
"name": "afrim-web",
"private": true,
"description": "Web platform for the Afrim input method.",
"workspaces": [
"packages/*"
],
"packageManager": "npm@10.7.0",
"engines": {
"nodes": ">=18.0.0"
},
"scripts": {
"build-afrim-input": "npm -w afrim-input run bundle",
"build": "npm -w afrim-playground run bundle",
"start": "npm -w afrim-playground start",
"fmt-check": "npx prettier . --check",
"fmt": "npx prettier . --write --cache"
},
"repository": {
"type": "git",
"url": "git+https://github.com/fodydev/afrim-web.git"
},
"keywords": [
"afrim",
"ime"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/fodydev/afrim-web/issues"
},
"homepage": "https://github.com/fodydev/afrim-web#readme",
"devDependencies": {
"prettier": "3.5.3"
}
}