-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.8 KB
/
Copy pathpackage.json
File metadata and controls
64 lines (64 loc) · 1.8 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
61
62
63
64
{
"name": "node-red-vue-template",
"version": "3.3.1",
"description": "A template to build Node-RED nodes using Vue 3 and Typescript",
"author": "Allan Oricil <allanoricil@duck.com>",
"license": "MIT",
"type": "module",
"repository": {
"url": "https://github.com/AllanOricil/node-red-vue-template",
"type": "git"
},
"publishConfig": {
"access": "public"
},
"engines": {
"node": ">=22",
"pnpm": ">=10.11.0"
},
"keywords": [
"nrg",
"template",
"vite",
"vue"
],
"scripts": {
"debug": "NODE_OPTIONS='--inspect-brk' NODE_ENV=development vite",
"dev": "NODE_ENV=development vite",
"build:dev": "NODE_ENV=development vite build",
"build": "NODE_ENV=production vite build",
"lint": "eslint src/",
"lint:fix": "eslint src/ --fix",
"format": "prettier --write \"src/**/*.{ts,vue,json}\"",
"format:check": "prettier --check \"src/**/*.{ts,vue,json}\"",
"test": "vitest run",
"test:watch": "vitest",
"tsc:client": "tsc -p src/client/tsconfig.json",
"tsc:server": "tsc -p src/server/tsconfig.json"
},
"devDependencies": {
"@eslint/js": "^9.27.0",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/exec": "^7.1.0",
"@semantic-release/git": "^10.0.1",
"@types/jquery": "^4.0.0",
"@types/node": "^22.15.18",
"@typescript-eslint/eslint-plugin": "^8.32.1",
"@typescript-eslint/parser": "^8.32.1",
"eslint": "^9.27.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-vue": "^10.1.0",
"globals": "^16.1.0",
"moment": "^2.30.1",
"prettier": "3.5.3",
"semantic-release": "^24.2.4",
"typescript": "^5.8.3",
"typescript-eslint": "^8.32.1",
"vite": "^6.3.4",
"vitest": "^4.1.5",
"vue": "^3.5.34"
},
"dependencies": {
"@bonsae/nrg": "0.15.1"
}
}