Skip to content
This repository was archived by the owner on Jul 30, 2025. It is now read-only.

Commit 6795443

Browse files
committed
add auth to npmrc
1 parent 349774a commit 6795443

File tree

3 files changed

+1305
-68
lines changed

3 files changed

+1305
-68
lines changed

.npmrc

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
11
auto-install-peers=true
22
strict-peer-dependencies=false
33
registry=https://registry.npmjs.org
4+
@aptos-internal:registry=https://us-npm.pkg.dev/aptos-registry/npm/
5+
//us-npm.pkg.dev/aptos-registry/npm/:always-auth=true
6+
@jsr:registry=https://npm.jsr.io
Lines changed: 75 additions & 26 deletions
Original file line numberDiff line numberDiff line change
@@ -1,36 +1,85 @@
11
{
2-
"name": "@aptos-labs/aptos-nextra-config",
3-
"version": "0.0.0",
2+
"name": "@aptos-labs/docs-site",
43
"type": "module",
5-
"description": "Docs config for Aptos",
6-
"license": "MIT",
4+
"author": "hariria",
5+
"private": true,
76
"scripts": {
8-
"build": "tsup ./src/index.ts"
7+
"analyze": "ANALYZE=true pnpm build",
8+
"prepare": "node --loader ts-node/esm utils/generateLocaleMap.mts",
9+
"build": "next build",
10+
"build:prod": "next build; pnpm postbuild",
11+
"clean": "rimraf .next .turbo",
12+
"debug": "NODE_OPTIONS='--inspect' next dev",
13+
"dev": "next -p 3030",
14+
"postbuild": "next-sitemap --config next-sitemap.config.mjs; node generate-language-sitemaps.cjs; node generate-sitemap-index.cjs",
15+
"start": "next start -p 3030",
16+
"types:check": "tsc --noEmit",
17+
"fmt": "prettier --write '**/*.(css|tsx|ts|jsx|js|cjs|mjs|json|md|html)'",
18+
"lint": "prettier --check '**/*.(css|tsx|ts|jsx|js|cjs|mjs|json|md|html)",
19+
"artifactregistry-login": "pnpm dlx google-artifactregistry-auth"
920
},
10-
"files": [
11-
"dist",
12-
"package.json"
13-
],
14-
"exports": {
15-
".": {
16-
"types": "./dist/index.d.ts",
17-
"require": "./dist/index.js",
18-
"import": "./dist/index.mjs"
19-
}
20-
},
21-
"main": "./dist/index.js",
22-
"module": "./dist/index.mjs",
23-
"types": "./dist/index.d.ts",
24-
"engines": {
25-
"node": ">=22"
21+
"dependencies": {
22+
"@aptos-internal/api-gateway-admin-api-client": "4.1.0",
23+
"@aptos-labs/ai-chatbot-client": "^0.1.0",
24+
"@aptos-labs/aptos-nextra-config": "workspace:*",
25+
"@aptos-labs/github-fetch": "workspace:*",
26+
"@aptos-labs/nextra-components": "workspace:*",
27+
"@graphiql/react": "^0.21.0",
28+
"@graphiql/toolkit": "^0.9.1",
29+
"@next/third-parties": "^14.1.0",
30+
"@radix-ui/react-accordion": "^1.1.2",
31+
"@radix-ui/react-dialog": "^1.1.14",
32+
"@radix-ui/react-form": "^0.1.0",
33+
"@radix-ui/react-scroll-area": "^1.2.9",
34+
"@radix-ui/react-slot": "^1.0.2",
35+
"@scalar/api-reference-react": "0.3.86",
36+
"@scalar/nextjs-api-reference": "0.4.85",
37+
"@tanstack/react-query": "^5.56.2",
38+
"@types/react-syntax-highlighter": "^15.5.13",
39+
"@vercel/og": "^0.5.0",
40+
"class-variance-authority": "^0.7.0",
41+
"clsx": "2.1.0",
42+
"dotenv": "^16.4.5",
43+
"firebase": "^11.0.2",
44+
"focus-visible": "^5.1.0",
45+
"graphiql": "^3.2.0",
46+
"graphql": "^16.8.1",
47+
"graphql-ws": "^5.16.0",
48+
"lucide-react": "^0.514.0",
49+
"next": "^14.2.30",
50+
"next-sitemap": "^4.2.3",
51+
"nextra": "3.3.1",
52+
"nextra-theme-docs": "3.3.1",
53+
"react": "^18.2.0",
54+
"react-dom": "^18.2.0",
55+
"react-hook-form": "^7.51.2",
56+
"react-intersection-observer": "^9.15.1",
57+
"react-markdown": "^10.1.0",
58+
"react-select": "^5.8.0",
59+
"react-syntax-highlighter": "^15.6.1",
60+
"remark-gfm": "^4.0.1",
61+
"sharp": "^0.33.5",
62+
"tailwind-merge": "^2.2.2",
63+
"uuid": "^9.0.0",
64+
"xml2js": "^0.6.2"
2665
},
2766
"devDependencies": {
28-
"@types/react": "^19.0.3",
29-
"react": "^19.0.0",
30-
"tsup": "^8.4.0",
67+
"@csstools/postcss-oklab-function": "^4.0.2",
68+
"@next/bundle-analyzer": "^13.5.7",
69+
"@types/node": "^20.16.10",
70+
"@types/react": "^18.3.10",
71+
"@types/react-dom": "^18.3.0",
72+
"@types/uuid": "^9.0.0",
73+
"autoprefixer": "^10.4.20",
74+
"postcss": "^8.4.47",
75+
"shiki": "^1.21.0",
76+
"tailwindcss": "^3.4.13",
77+
"ts-node": "^10.9.2",
3178
"typescript": "^5.7.2"
3279
},
33-
"peerDependencies": {
34-
"react": "^19.0.0"
80+
"nextBundleAnalysis": {
81+
"budget": 358400,
82+
"budgetPercentIncreaseRed": 20,
83+
"showDetails": true
3584
}
3685
}

0 commit comments

Comments
 (0)