-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.09 KB
/
Copy pathpackage.json
File metadata and controls
43 lines (43 loc) · 1.09 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
{
"name": "@snapverse/gce-cli",
"version": "0.1.0",
"description": "A powerful framework to build Chrome Extensions effortlessly using TypeScript.",
"keywords": [
"gce",
"cli",
"google",
"chrome",
"extension",
"framework",
"typescript"
],
"author": "Simón Villafañe <simonvillafanee3@gmail.com>",
"license": "GNU GPLv3",
"main": "main.ts",
"type": "module",
"scripts": {
"start": "pnpm check && tsx main.ts",
"watch": "tsx watch main.ts",
"check": "tsc --noEmit",
"fix": "pnpm lint:fix & pnpm prettier",
"lint": "eslint src -c eslint.config.ts",
"lint:fix": "eslint src -c eslint.config.ts --fix",
"prettier": "prettier --write src",
"test": "echo \"Error: no test specified\" && exit 1"
},
"dependencies": {
"chalk": "^5.4.1"
},
"devDependencies": {
"@eslint/js": "^9.18.0",
"@types/node": "^22.10.7",
"eslint": "^9.18.0",
"globals": "^15.14.0",
"jiti": "^2.4.2",
"prettier": "3.4.2",
"tsx": "^4.19.2",
"typescript": "latest",
"typescript-eslint": "^8.20.0",
"yaml": "^2.7.0"
}
}