[READ-ONLY] a fast, modern browser for the npm registry
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

chore: cli pkg name + type test

+8 -12
+2 -6
README.md
··· 90 90 The `cli/` workspace contains a local connector that enables authenticated npm operations from the web UI. It runs on your machine and uses your existing npm credentials. 91 91 92 92 ```bash 93 - # run the connector in dev mode 94 - pnpm --filter @npmx/connector dev 95 - 96 - # or build and run the production version 97 - pnpm --filter @npmx/connector build 98 - node cli/dist/cli.mjs 93 + # run the connector from the root of the repository 94 + pnpm npmx-connector 99 95 ``` 100 96 101 97 The connector will check your npm authentication, generate a connection token, and listen for requests from npmx.dev.
+1 -1
cli/package.json
··· 1 1 { 2 - "name": "@npmx/connector", 2 + "name": "npmx-connector", 3 3 "version": "0.0.1", 4 4 "description": "Local connector for npmx.dev - enables authenticated npm operations from the web UI", 5 5 "license": "MIT",
+5 -5
package.json
··· 14 14 "lint": "oxlint && oxfmt --check .", 15 15 "lint:fix": "oxlint --fix && oxfmt .", 16 16 "generate": "nuxt generate", 17 + "npmx-connector": "pnpm --filter npmx-connector dev", 17 18 "preview": "nuxt preview", 18 19 "postinstall": "nuxt prepare && simple-git-hooks", 19 - "test:types": "nuxt prepare && vue-tsc -b --noEmit", 20 20 "test": "vitest", 21 - "test:coverage": "vitest --coverage", 22 - "test:unit": "vitest --project unit", 23 - "test:nuxt": "vitest --project nuxt", 24 21 "test:browser": "playwright test", 25 22 "test:browser:ui": "playwright test --ui", 26 - "test:browser:update": "playwright test --update-snapshots" 23 + "test:browser:update": "playwright test --update-snapshots", 24 + "test:nuxt": "vitest --project nuxt", 25 + "test:types": "nuxt prepare && vue-tsc -b --noEmit && pnpm --filter npmx-connector test:types", 26 + "test:unit": "vitest --project unit" 27 27 }, 28 28 "dependencies": { 29 29 "@iconify-json/vscode-icons": "^1.2.40",