Home
last modified time | relevance | path

Searched +full:plugin +full:- +full:node +full:- +full:resolve (Results 1 – 25 of 771) sorted by relevance

12345678910>>...31

/aosp_15_r20/tools/netsim/ui/
H A Dpackage-lock.json2 "name": "netsim-app",
8 "name": "netsim-app",
17 "@custom-elements-manifest/analyzer": "^0.4.17",
18 "@open-wc/building-rollup": "^2.2.1",
19 "@open-wc/eslint-config": "^4.3.0",
20 "@open-wc/testing": "next",
21 "@rollup/plugin-node-resolve": "^15.0.1",
22 "@typescript-eslint/eslint-plugin": "^4.33.0",
23 "@typescript-eslint/parser": "^4.33.0",
24 "@web/dev-server": "^0.1.28",
[all …]
H A Drollup.config.mjs2 import { rollupPluginHTML as html } from '@web/rollup-plugin-html';
3 import { copy } from '@web/rollup-plugin-copy';
4 import resolve from '@rollup/plugin-node-resolve';
5 import { terser } from 'rollup-plugin-terser';
6 import summary from 'rollup-plugin-summary';
7 import { rollupImportMapPlugin } from "rollup-plugin-import-map";
12 // HTML files for non-SPA app
20 'lit': 'https://cdn.jsdelivr.net/gh/lit/dist@2/core/lit-core.min.js',
21 …'lit/decorators.js': 'https://cdn.skypack.dev/pin/[email protected]-jYRq0AKQogjUdUh7SCAE/mode=imports/opt…
22 'lit/directives/live.js': 'https://cdn.jsdelivr.net/gh/lit/dist@2/all/lit-all.min.js',
[all …]
/aosp_15_r20/external/pigweed/
H A Dpackage-lock.json10 "license": "Apache-2.0",
12 "@protobuf-ts/protoc": "^2.7.0",
14 "google-protobuf": "^3.17.3",
16 "ts-protoc-gen": "^0.15.0"
23 "@codemirror/lang-python": "^6.1.6",
25 "@codemirror/theme-one-dark": "^6.1.2",
26 "@lit-labs/virtualizer": "^2.0.7",
27 "@material-ui/core": "^4.12.1",
28 "@material-ui/lab": "^4.0.0-alpha.60",
30 "@open-wc/testing": "^3.0.0-next.5",
[all …]
H A Drollup.config.js7 // https://www.apache.org/licenses/LICENSE-2.0
15 import commonjs from '@rollup/plugin-commonjs';
16 import resolve from '@rollup/plugin-node-resolve';
17 import pluginTypescript from '@rollup/plugin-typescript';
19 import nodePolyfills from 'rollup-plugin-node-polyfills';
20 import postcss from 'rollup-plugin-postcss';
21 import sourceMaps from 'rollup-plugin-sourcemaps';
22 import terser from '@rollup/plugin-terser';
39 resolve(),
41 // Resolve source maps to the original source
[all …]
H A Drollup-protos.config.js7 // https://www.apache.org/licenses/LICENSE-2.0
15 import commonjs from '@rollup/plugin-commonjs';
16 import resolve from '@rollup/plugin-node-resolve';
17 import pluginTypescript from '@rollup/plugin-typescript';
19 import sourceMaps from 'rollup-plugin-sourcemaps';
29 banner: '#!/usr/bin/env node\n\nconst window = null;',
37 resolve(),
40 // Resolve source maps to the original source
50 banner: '#!/usr/bin/env node\n\nconst window = null;',
58 resolve(),
[all …]
H A Dpackage.json4 "description": "An open source collection of embedded-targeted libraries",
6 "license": "Apache-2.0",
18 "prebuild": "rimraf dist && npm run build-protos",
19 "build-protos": "rollup -c rollup-protos.config.js && node dist/bin/build_default_protos.js",
21 "dev": "rollup -c -w",
22 "rollup": "rollup -c && npm run postbuild",
24 "start": "tsc-watch --onSuccess \"rollup -c\"",
25 "check": "eslint . --ext .ts",
26 "fix": "eslint . --ext .ts --fix",
27 "test": "npm run build && jest --silent",
[all …]
/aosp_15_r20/external/perfetto/ui/
H A Dpnpm-lock.yaml23 '@codemirror/theme-one-dark':
41 '@types/color-convert':
50 '@types/node':
62 '@types/w3c-web-usb':
68 color-convert:
71 devtools-protocol:
89 jsbn-rsa:
95 noice-json-rpc:
104 protobufjs-cli:
116 vega-lite:
[all …]
H A Dpackage.json2 "name": "perfetto-webui",
8 "license": "Apache-2.0",
15 "@codemirror/theme-one-dark": "^6.1.2",
21 "@types/color-convert": "^2.0.3",
24 "@types/node": "^20.14.9",
28 "@types/w3c-web-usb": "^1.0.10",
30 "color-convert": "^2.0.1",
31 "devtools-protocol": "0.0.1319565",
37 "jsbn-rsa": "^1.0.4",
39 "noice-json-rpc": "^1.2.0",
[all …]
/aosp_15_r20/external/pigweed/pw_ide/ts/pigweed-vscode/
H A Dpackage-lock.json10 "license": "Apache-2.0",
16 "js-yaml": "^4.1.0",
17 "node_modules-path": "^2.0.8",
18 "strip-ansi": "^7.1.0"
24 "@types/js-yaml": "^4.0.9",
25 "@types/node": "^20.14.10",
27 "@typescript-eslint/eslint-plugin": "^7.16.0",
28 "@typescript-eslint/parser": "^7.16.0",
29 "@vscode/test-cli": "^0.0.10",
30 "@vscode/test-electron": "^2.4.1",
[all …]
H A Dwebpack.config.js7 // https://www.apache.org/licenses/LICENSE-2.0
18 const NodePolyfillPlugin = require('node-polyfill-webpack-plugin');
23 // We need access to node APIs, so we can't currently build for webworker.
24 target: 'node',
26 // the entry point of this extension, �� ->
27 // https://webpack.js.org/configuration/entry-context/
31 // the bundle is stored in the 'dist' folder (check package.json), �� ->
33 path: path.resolve(__dirname, 'dist'),
36 devtoolModuleFilenameTemplate: '../[resource-path]',
38 devtool: 'source-map',
[all …]
/aosp_15_r20/development/tools/ota_analysis/
H A Dpackage-lock.json13 "core-js": "^3.6.5",
15 "eslint-config-airbnb-base": "^14.2.1",
16 "flush-promises": "^1.0.2",
18 "material-design-icons": "^3.0.1",
20 "roboto-fontface": "*",
21 "vue": "^3.0.0-0",
22 "vue-echarts": "^6.0.0-rc.6",
23 "vue-router": "^4.0.0-0",
24 "vue-uuid": "^2.0.2",
25 "vuetify": "^3.0.0-alpha.0",
[all …]
/aosp_15_r20/development/tools/otagui/
H A Dpackage-lock.json13 "core-js": "^3.6.5",
15 "eslint-config-airbnb-base": "^14.2.1",
17 "material-design-icons": "^3.0.1",
19 "roboto-fontface": "*",
20 "vue": "^3.0.0-0",
21 "vue-echarts": "^6.0.0-rc.6",
22 "vue-router": "^4.0.0-0",
23 "vue-uuid": "^2.0.2",
24 "vue3-table-lite": "^1.0.5",
25 "vuetify": "^3.0.0-alpha.0",
[all …]
/aosp_15_r20/packages/services/Car/tools/telemetry/lua-interpreter/
Dpackage-lock.json2 "name": "lua-interpreter",
8 "@codemirror/lang-json": "^6.0.0",
9 "@codemirror/legacy-modes": "^6.1.0",
10 "@rollup/plugin-node-resolve": "^13.3.0",
11 "cm6-theme-nord": "^0.2.0",
17 … "resolved": "https://registry.npmjs.org/@codemirror/autocomplete/-/autocomplete-6.4.2.tgz",
18 …"integrity": "sha512-8WE2xp+D0MpWEv5lZ6zPW1/tf4AGb358T5GWYiKEuCP8MvFfT3tH2mIF9Y2yr2e3KbHuSvsVhosiE…
35 "resolved": "https://registry.npmjs.org/@codemirror/commands/-/commands-6.2.2.tgz",
36 …"integrity": "sha512-s9lPVW7TxXrI/7voZ+HmD/yiAlwAYn9PH5SUVSUhsxXHhv4yl5eZ3KLntSoTynfdgVYM0oIpccQEW…
45 "node_modules/@codemirror/lang-json": {
[all …]
/aosp_15_r20/external/pigweed/pw_web/webconsole/
H A Dpackage-lock.json12 "@codemirror/lang-javascript": "^6.0.2",
14 "@codemirror/theme-one-dark": "^6.0.0",
20 "object-path": "^0.11.8",
23 "react-dom": "18.2.0",
24 "react-virtualized": "^9.22.3",
25 "react-virtualized-auto-sizer": "^1.0.6",
26 "react-window": "^1.8.7",
28 "xterm-addon-fit": "^0.5.0"
31 "@types/node": "18.6.3",
33 "@types/react-dom": "18.0.6",
[all …]
/aosp_15_r20/external/skia/experimental/tskit/
H A Dpackage-lock.json9 "license": "BSD-3-Clause",
11 "@typescript-eslint/eslint-plugin": "^4.21.0",
12 "@typescript-eslint/parser": "^4.21.0",
14 "eslint-config-airbnb-typescript": "^12.3.1",
15 "eslint-plugin-import": "^2.22.1",
19 "node_modules/@babel/code-frame": {
21 "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.12.11.tgz",
22 …"integrity": "sha512-Zt1yodBx1UcyiePMSkWnU4hPqhwq7hGi2nFL1LeA3EUl+q2LQx16MISgJ0+z7dnmgvP9QtIleuETG…
28 "node_modules/@babel/helper-validator-identifier": {
30 …solved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identif…
[all …]
/aosp_15_r20/external/pigweed/pw_web/log-viewer/
H A Dpackage-lock.json2 "name": "log-viewer",
8 "name": "log-viewer",
12 "@codemirror/lang-python": "^6.1.6",
14 "@codemirror/theme-one-dark": "^6.1.2",
15 "@lit-labs/virtualizer": "^2.0.7",
17 "@shoelace-style/shoelace": "^2.15.0",
20 "prettier-plugin-jsdoc": "^0.4.2"
23 "@open-wc/testing": "^3.0.0-next.5",
24 "@remcovaes/web-test-runner-vite-plugin": "^1.2.1",
26 "@typescript-eslint/eslint-plugin": "^5.59.7",
[all …]
/aosp_15_r20/development/tools/winscope/
H A Dpackage-lock.json19 "@angular/platform-browser": "^14.0.0",
20 "@angular/platform-browser-dynamic": "^14.0.0",
22 "@auth0/auth0-angular": "^1.10.0",
28 "gl-matrix": "^3.4.3",
29 "html-loader": "^3.1.0",
32 "jsbn-rsa": "^1.0.4",
35 "style-loader": "^3.3.1",
37 "ts-loader": "^9.3.0",
40 "webgl-utils": "^1.0.1",
41 "webgl-utils.js": "^1.1.0",
[all …]
/aosp_15_r20/frameworks/base/packages/SystemUI/scripts/token_alignment/
H A Dpackage-lock.json8 "csv-parse": "^5.3.3",
14 "@types/node": "^18.11.18",
15 "@typescript-eslint/eslint-plugin": "^5.48.0",
16 "eslint-config-prettier": "^8.6.0",
17 "eslint-plugin-import": "^2.26.0",
18 "eslint-plugin-prettier": "^4.2.1",
19 "eslint-plugin-simple-import-sort": "^8.0.0",
20 "ts-node": "^10.9.1",
24 "node_modules/@cspotcode/source-map-support": {
26 …"resolved": "https://registry.npmjs.org/@cspotcode/source-map-support/-/source-map-support-0.8.1.t…
[all …]
/aosp_15_r20/external/jspecify/docs/
H A Dpackage-lock.json12 "@docusaurus/preset-classic": "3.4.0",
13 "@mdx-js/react": "^3.0.0",
15 "prism-react-renderer": "^2.3.0",
17 "react-dom": "^18.0.0"
20 "@docusaurus/module-type-aliases": "3.4.0",
24 "node": ">=18.0" string
27 "node_modules/@algolia/autocomplete-core": {
29 … "resolved": "https://registry.npmjs.org/@algolia/autocomplete-core/-/autocomplete-core-1.9.3.tgz",
30 …"integrity": "sha512-009HdfugtGCdC4JdXUbVJClA0q0zh24yyePn+KUGk3rP7j8FEe/m5Yo/z65gn6nP/cM39PxpzqKrL…
33 "@algolia/autocomplete-plugin-algolia-insights": "1.9.3",
[all …]
/aosp_15_r20/development/tools/motion/motion_test_watcher_app/
H A Dpackage-lock.json2 "name": "watch-web-app",
8 "name": "watch-web-app",
17 "@angular/platform-browser": "^18.0.0",
18 "@angular/platform-browser-dynamic": "^18.0.0",
20 "ng-keyboard-shortcuts": "^13.0.8",
26 "@angular-devkit/build-angular": "^18.0.1",
28 "@angular/compiler-cli": "^18.0.0",
30 "jasmine-core": "~5.1.0",
32 "karma-chrome-launcher": "~3.2.0",
33 "karma-coverage": "~2.2.0",
[all …]
/aosp_15_r20/external/chromium-trace/catapult/third_party/polymer/components/shadycss/
H A Dpackage-lock.json7 "@babel/code-frame": {
9 "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.0.0.tgz",
10 …"integrity": "sha512-OfC2uemaknXr87bdLUkWog7nYuliM9Ij5HUcajsVcMCpQrcLmtxRbVFTIqmcSkSeYRBFBRxs2FiUq…
18 "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.1.2.tgz",
19 …"integrity": "sha512-IFeSSnjXdhDaoysIlev//UzHZbdEmm7D0EIH2qtse9xK7mXEZQpYjs2P00XlP1qYsYvid79p+Zgg6…
22 "@babel/code-frame": "^7.0.0",
29 "convert-source-map": "^1.1.0",
33 "resolve": "^1.3.2", string
35 "source-map": "^0.5.0"
40 "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.1.3.tgz",
[all …]
/aosp_15_r20/external/perfetto/python/tools/
H A Dcheck_imports.py8 # http://www.apache.org/licenses/LICENSE-2.0
30 NODE_MODULES = '%node_modules%' # placeholder to depend on any node module.
32 # The format of this array is: (src) -> (dst).
34 # [a,b] -> [c,d] is equivalent to allowing a>c, a>d, b>c, b>d.
101 # ------ Technical debt that needs cleaning up below this point ------
118 # TODO(primiano): Record page-related technical debt.
154 return s[:-len(suffix)] if s.endswith(suffix) else s
162 """Returns the set of deps declared by the plugin (if any)
164 It scans the plugin/index.ts file, and resolves the declared dependencies,
165 working out the path of the plugin we depend on (by looking at the imports).
[all …]
/aosp_15_r20/external/timezone-boundary-builder/
H A Dpackage-lock.json2 "name": "timezone-boundary-builder",
7 "@babel/code-frame": {
9 "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.10.4.tgz",
10 …"integrity": "sha512-vG6SvB6oYEhvgisZNFRmRCUkLz11c7rp+tbNTynGqc6mS1d5ATd/sGyV6W0KZZnXRKMTzZDRgQT3O…
16 "@babel/helper-validator-identifier": {
18 …solved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identif…
19 …"integrity": "sha512-3U9y+43hz7ZM+rzG24Qe2mufW5KhvFg/NhnNph+i9mgCtdTCtMJuI1TMkrIUiK7Ix4PYlRF9I5dhq…
24 "resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.10.4.tgz",
25 …"integrity": "sha512-i6rgnR/YgPEQzZZnbTHHuZdlE8qyoBNalD6F+q4vAFlcMEcqmkoG+mPqJYJCo63qPf74+Y1UZsl3l…
28 "@babel/helper-validator-identifier": "^7.10.4",
[all …]
/aosp_15_r20/external/okio/kotlin-js-store/
H A Dyarn.lock7 …resolved "https://registry.yarnpkg.com/@colors/colors/-/colors-1.5.0.tgz#bb504579c1cae923e6576a4f5…
8 …integrity sha512-ooWCrlZP11i8GImSjTHYHLkvFDP48nS4+204nGb1RiX/WXYHmJA2III9/e2DWVabCESdW7hBAEzHRqUn9…
10 "@discoveryjs/json-ext@^0.5.0":
12 …resolved "https://registry.yarnpkg.com/@discoveryjs/json-ext/-/json-ext-0.5.7.tgz#1d572bfbbe14b770…
13 …integrity sha512-dBVuXR082gk3jsFp7Rd/JI4kytwGHecnCoTtXFb7DB6CNHp4rg5k1bhg0nWdLGLnOV71lmDzGQaLMy8iP…
15 "@jridgewell/gen-mapping@^0.3.0":
17 …resolved "https://registry.yarnpkg.com/@jridgewell/gen-mapping/-/gen-mapping-0.3.3.tgz#7e02e6eb5df…
18 …integrity sha512-HLhSWOLRi875zjjMG/r+Nv0oCW8umGb0BgEhyX3dDX3egwZtB8PqLnjz3yedt8R5StBrzcg4aBpnh8UA9…
20 "@jridgewell/set-array" "^1.0.1"
21 "@jridgewell/sourcemap-codec" "^1.4.10"
[all …]
/aosp_15_r20/external/chromium-trace/catapult/third_party/polymer/components/polymer/
H A Dbuild.log2 ---------
3 Build Time: 2018-02-12T15:48:46-0800
8 dom-serializer: 0.1.0
10 expand-tilde: 1.2.2
11 is-windows: 0.2.0
14 path-is-inside: 1.0.2
18 @types/express-serve-static-core: 4.0.53
24 @types/node: 4.2.20
25 @types/serve-static: 1.7.32
26 accessibility-developer-tools: 2.12.0
[all …]

12345678910>>...31