-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.24 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.24 KB
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
40
41
42
43
44
45
46
47
48
49
50
51
{
"name": "@radiantbeing/fast-node",
"description": "Fast.com을 이용한 인터넷 속도 측정 CLI 도구",
"version": "1.0.0",
"author": "Inhwa Kim <inhwa.kim@kakao.com>",
"type": "module",
"bin": {
"fast": "./dist/main.js"
},
"files": [
"./dist"
],
"scripts": {
"dev": "tsx ./src/main.tsx",
"build": "rm -rf ./dist && tsc --project ./tsconfig.build.json",
"preview": "node ./dist/main.js",
"test": "node --import tsx --test",
"lint": "eslint .",
"format": "prettier --write .",
"prepare": "husky install"
},
"volta": {
"node": "24.11.1"
},
"dependencies": {
"ink": "^6.5.1",
"playwright": "^1.57.0",
"react": "^19.2.1"
},
"devDependencies": {
"@types/node": "^24.10.2",
"@types/react": "^19.2.7",
"eslint": "^9.39.1",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-react-hooks": "^7.0.1",
"globals": "^16.5.0",
"husky": "^9.1.7",
"lint-staged": "^16.2.7",
"prettier": "^3.7.4",
"tsx": "^4.21.0",
"typescript": "^5.9.3",
"typescript-eslint": "^8.49.0"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"prettier --write",
"eslint --cache --fix --max-warnings=0"
],
"*.{json,md,yaml}": "prettier --write"
}
}