-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.31 KB
/
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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
{
"private": true,
"name": "webxdc-app-template",
"version": "1.0.0",
"description": "Template for Webxdc applications",
"author": "Andrew Chou <[email protected]>",
"license": "MIT",
"keywords": [
"webxdc"
],
"repository": {
"type": "git",
"url": "https://github.com/achou11/webxdc-app-template.git"
},
"bugs": {
"url": "https://github.com/achou11/webxdc-app-template/issues"
},
"homepage": "https://github.com/achou11/webxdc-app-template",
"type": "module",
"packageManager": "[email protected]",
"scripts": {
"prepare": "husky",
"lint:format": "prettier --check --cache .",
"lint:eslint": "eslint --cache .",
"lint": "pnpm run \"/^lint:.*/\"",
"types": "tsc",
"vite:dev": "vite dev",
"vite:build": "vite build",
"webxdc:emulator": "webxdc-dev run http://localhost:5173"
},
"devDependencies": {
"@eslint/compat": "1.2.6",
"@eslint/js": "9.19.0",
"@ianvs/prettier-plugin-sort-imports": "4.4.1",
"@types/node": "22.13.1",
"@vitejs/plugin-basic-ssl": "1.2.0",
"@webxdc/types": "2.1.2",
"@webxdc/vite-plugins": "1.5.1",
"@webxdc/webxdc-dev": "0.18.0",
"eslint": "9.19.0",
"globals": "15.14.0",
"husky": "9.1.7",
"nano-staged": "0.8.0",
"prettier": "3.4.2",
"prettier-plugin-jsdoc": "1.3.2",
"typescript": "5.7.3",
"typescript-eslint": "8.23.0",
"vite": "6.0.11"
}
}