usage-board 3.1.2 → 3.2.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (41) hide show
  1. package/dist/index.mjs +25 -264
  2. package/dist/public/_nuxt/builds/latest.json +1 -1
  3. package/dist/public/_nuxt/builds/meta/ae3c6372-8821-43fb-aa55-bb47729a5660.json +1 -0
  4. package/dist/server/chunks/nitro/nitro.mjs +64 -64
  5. package/dist/server/chunks/routes/api/analysis/agent/session.json.mjs +1 -1
  6. package/dist/server/chunks/routes/api/analysis/agent/token.json.mjs +1 -1
  7. package/dist/server/chunks/routes/api/analysis/cache.json.mjs +1 -1
  8. package/dist/server/chunks/routes/api/analysis/hot-project.json.mjs +1 -1
  9. package/dist/server/chunks/routes/api/analysis/model.json.mjs +1 -1
  10. package/dist/server/chunks/routes/api/analysis/overview-cards.json.mjs +1 -1
  11. package/dist/server/chunks/routes/api/analysis/session.json.mjs +1 -1
  12. package/dist/server/chunks/routes/api/analysis/token/daily.json.mjs +1 -1
  13. package/dist/server/chunks/routes/api/analysis/token.json.mjs +1 -1
  14. package/dist/server/chunks/routes/api/payload.json.mjs +1 -1
  15. package/dist/server/chunks/routes/api/projects/_project/modules.get.mjs +1 -1
  16. package/dist/server/chunks/routes/api/projects/catalog.get.mjs +1 -1
  17. package/dist/server/chunks/routes/renderer.mjs +1 -1
  18. package/dist/server/chunks/routes/ws.mjs +1 -1
  19. package/dist/server/index.mjs +1 -1
  20. package/dist/server/package.json +1 -4
  21. package/package.json +8 -6
  22. package/dist/public/_nuxt/builds/meta/97934cfc-fbd7-4ac5-ab89-aefedca0767f.json +0 -1
  23. package/dist/server/node_modules/better-sqlite3/build/Release/better_sqlite3.node +0 -0
  24. package/dist/server/node_modules/better-sqlite3/lib/database.js +0 -90
  25. package/dist/server/node_modules/better-sqlite3/lib/index.js +0 -3
  26. package/dist/server/node_modules/better-sqlite3/lib/methods/aggregate.js +0 -43
  27. package/dist/server/node_modules/better-sqlite3/lib/methods/backup.js +0 -67
  28. package/dist/server/node_modules/better-sqlite3/lib/methods/function.js +0 -31
  29. package/dist/server/node_modules/better-sqlite3/lib/methods/inspect.js +0 -7
  30. package/dist/server/node_modules/better-sqlite3/lib/methods/pragma.js +0 -12
  31. package/dist/server/node_modules/better-sqlite3/lib/methods/serialize.js +0 -16
  32. package/dist/server/node_modules/better-sqlite3/lib/methods/table.js +0 -189
  33. package/dist/server/node_modules/better-sqlite3/lib/methods/transaction.js +0 -78
  34. package/dist/server/node_modules/better-sqlite3/lib/methods/wrappers.js +0 -54
  35. package/dist/server/node_modules/better-sqlite3/lib/sqlite-error.js +0 -20
  36. package/dist/server/node_modules/better-sqlite3/lib/util.js +0 -12
  37. package/dist/server/node_modules/better-sqlite3/package.json +0 -59
  38. package/dist/server/node_modules/bindings/bindings.js +0 -221
  39. package/dist/server/node_modules/bindings/package.json +0 -28
  40. package/dist/server/node_modules/file-uri-to-path/index.js +0 -66
  41. package/dist/server/node_modules/file-uri-to-path/package.json +0 -32
@@ -1,66 +0,0 @@
1
-
2
- /**
3
- * Module dependencies.
4
- */
5
-
6
- var sep = require('path').sep || '/';
7
-
8
- /**
9
- * Module exports.
10
- */
11
-
12
- module.exports = fileUriToPath;
13
-
14
- /**
15
- * File URI to Path function.
16
- *
17
- * @param {String} uri
18
- * @return {String} path
19
- * @api public
20
- */
21
-
22
- function fileUriToPath (uri) {
23
- if ('string' != typeof uri ||
24
- uri.length <= 7 ||
25
- 'file://' != uri.substring(0, 7)) {
26
- throw new TypeError('must pass in a file:// URI to convert to a file path');
27
- }
28
-
29
- var rest = decodeURI(uri.substring(7));
30
- var firstSlash = rest.indexOf('/');
31
- var host = rest.substring(0, firstSlash);
32
- var path = rest.substring(firstSlash + 1);
33
-
34
- // 2. Scheme Definition
35
- // As a special case, <host> can be the string "localhost" or the empty
36
- // string; this is interpreted as "the machine from which the URL is
37
- // being interpreted".
38
- if ('localhost' == host) host = '';
39
-
40
- if (host) {
41
- host = sep + sep + host;
42
- }
43
-
44
- // 3.2 Drives, drive letters, mount points, file system root
45
- // Drive letters are mapped into the top of a file URI in various ways,
46
- // depending on the implementation; some applications substitute
47
- // vertical bar ("|") for the colon after the drive letter, yielding
48
- // "file:///c|/tmp/test.txt". In some cases, the colon is left
49
- // unchanged, as in "file:///c:/tmp/test.txt". In other cases, the
50
- // colon is simply omitted, as in "file:///c/tmp/test.txt".
51
- path = path.replace(/^(.+)\|/, '$1:');
52
-
53
- // for Windows, we need to invert the path separators from what a URI uses
54
- if (sep == '\\') {
55
- path = path.replace(/\//g, '\\');
56
- }
57
-
58
- if (/^.+\:/.test(path)) {
59
- // has Windows drive at beginning of path
60
- } else {
61
- // unix path…
62
- path = sep + path;
63
- }
64
-
65
- return host + path;
66
- }
@@ -1,32 +0,0 @@
1
- {
2
- "name": "file-uri-to-path",
3
- "version": "1.0.0",
4
- "description": "Convert a file: URI to a file path",
5
- "main": "index.js",
6
- "types": "index.d.ts",
7
- "directories": {
8
- "test": "test"
9
- },
10
- "scripts": {
11
- "test": "mocha --reporter spec"
12
- },
13
- "repository": {
14
- "type": "git",
15
- "url": "git://github.com/TooTallNate/file-uri-to-path.git"
16
- },
17
- "keywords": [
18
- "file",
19
- "uri",
20
- "convert",
21
- "path"
22
- ],
23
- "author": "Nathan Rajlich <nathan@tootallnate.net> (http://n8.io/)",
24
- "license": "MIT",
25
- "bugs": {
26
- "url": "https://github.com/TooTallNate/file-uri-to-path/issues"
27
- },
28
- "homepage": "https://github.com/TooTallNate/file-uri-to-path",
29
- "devDependencies": {
30
- "mocha": "3"
31
- }
32
- }