-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.45 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.45 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
52
53
54
55
56
57
58
59
60
{
"private": true,
"name": "webxdc-app-template",
"version": "1.0.0",
"description": "Template for Webxdc applications",
"author": "Andrew Chou <andrewchou@fastmail.com>",
"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": "pnpm@10.14.0",
"scripts": {
"build": "vite build",
"check:eslint": "eslint --cache .",
"check:format": "prettier --check --cache .",
"check:types": "tsc",
"check": "pnpm run \"/^check:.*/\"",
"dev": "vite dev",
"prepare": "husky",
"webxdc:emulator": "webxdc-dev run http://localhost:5173 --port 2468"
},
"devDependencies": {
"@eslint/compat": "1.3.1",
"@eslint/js": "9.32.0",
"@ianvs/prettier-plugin-sort-imports": "4.5.1",
"@types/node": "22.16.5",
"@webxdc/types": "2.1.2",
"@webxdc/vite-plugins": "1.5.1",
"@webxdc/webxdc-dev": "0.19.0",
"eslint": "9.32.0",
"globals": "16.3.0",
"husky": "9.1.7",
"nano-staged": "0.8.0",
"prettier": "3.6.2",
"prettier-plugin-jsdoc": "1.3.3",
"typescript": "5.8.3",
"typescript-eslint": "8.38.0",
"vite": "7.0.6"
},
"pnpm": {
"ignoredBuiltDependencies": [
"core-js"
],
"onlyBuiltDependencies": [
"esbuild"
],
"overrides": {
"@vitejs/plugin-basic-ssl": "2.0.0"
}
}
}