-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
95 lines (95 loc) · 2.12 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
{
"name": "solarnetwork-web-api-sampler",
"version": "2.0.5",
"description": "SolarNetwork API explorer.",
"keywords": [
"solarnetwork",
"solarquery"
],
"homepage": "https://github.com/SolarNetwork/web-api-sampler",
"license": "Apache-2.0",
"author": {
"name": "SolarNetwork Foundation",
"email": "code@solarnetwork.net"
},
"repository": {
"type": "git",
"url": "https://github.com/SolarNetwork/web-api-sampler.git"
},
"type": "module",
"engines": {
"node": ">=18.18"
},
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview",
"release": "generate-release --current-version \"$(bin/remove-preid.cjs)\""
},
"ava": {
"files": [
"src/test/ts/**/*"
],
"typescript": {
"rewritePaths": {
"src/": "lib/"
},
"compile": "tsc"
}
},
"c8": {
"exclude": [
"src/test/ts/**"
],
"exclude-after-remap": true,
"reporter": [
"text",
"html"
]
},
"config": {
"generateRelease": {
"no_confirm": false,
"remote": "origin",
"pre_commit_commands": [
"npm run build"
],
"post_complete_commands": [
"npmversion --increment prepatch --preid dev --nogit-tag"
],
"files_to_commit": []
}
},
"dependencies": {
"@popperjs/core": "^2.11.8",
"bootstrap": "^5.3.3",
"bootstrap-icons": "^1.11.3",
"highlight.js": "^11.10.0",
"jquery": "^3.7.1",
"solarnetwork-api-core": "^2.2.2"
},
"devDependencies": {
"@ava/typescript": "^5.0.0",
"@types/bootstrap": "^5.2.10",
"@types/crypto-js": "^4.2.2",
"@types/jquery": "^3.5.30",
"@typescript-eslint/eslint-plugin": "^8.7.0",
"@typescript-eslint/parser": "^8.7.0",
"ava": "^6.1.3",
"c8": "^10.1.2",
"eslint": "^9.11.1",
"generate-release": "^1.1.1",
"npmversion": "^1.7.0",
"sass": "^1.79.3",
"typedoc": "^0.26.7",
"typescript": "^5.6.2",
"vite": "^5.4.7"
},
"overrides": {
"json5": "2.2.3",
"lodash": "4.17.21",
"minimist": "1.2.8",
"postcss": "8.4.38",
"semver": "7.6.0"
}
}