-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 946 Bytes
/
package.json
File metadata and controls
39 lines (39 loc) · 946 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
36
37
38
39
{
"name": "write-right",
"version": "0.1.0",
"main": "index.js",
"scripts": {
"p": "prettier --write .",
"xo": "xo --verbose",
"lint": "run-s lint:*",
"lint:code": "prettier --write . && xo --fix",
"lint:type": "tsc --noemit",
"test": "vitest run",
"build": "node build.js",
"start": "npx serve dist",
"dev": "npm run build && npm start"
},
"keywords": [],
"author": "",
"license": "MIT",
"description": "",
"devDependencies": {
"@types/node": "^25.2.3",
"esbuild": "^0.27.3",
"hanzi-writer-data": "^2.0.1",
"jsdom": "^28.1.0",
"npm-run-all": "^4.1.5",
"prettier": "^3.8.1",
"sharp": "^0.34.5",
"typescript": "^5.9.3",
"vitest": "^4.0.18",
"xo": "^1.2.3"
},
"dependencies": {
"hanzi-writer": "^3.7.3",
"lucide": "^0.574.0",
"promise-polyfill": "^8.3.0",
"url-search-params-polyfill": "^8.2.5",
"whatwg-fetch": "^3.6.20"
}
}