-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
97 lines (97 loc) · 3.31 KB
/
Copy pathpackage.json
File metadata and controls
97 lines (97 loc) · 3.31 KB
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
96
97
{
"name": "atp",
"version": "0.0.1",
"repository": "git@github.com:bluesky-social/atproto.git",
"author": "Bluesky Social PBC <hello@blueskyweb.xyz>",
"license": "MIT",
"private": true,
"type": "module",
"engines": {
"node": ">=22"
},
"packageManager": "pnpm@11.11.0",
"devEngines": {
"runtime": {
"name": "node",
"version": ">=22.12.0",
"onFail": "error"
},
"packageManager": {
"name": "pnpm",
"version": "11.11.0",
"onFail": "error"
}
},
"scripts": {
"lint:fix": "pnpm lint --fix",
"lint": "eslint .",
"style:fix": "prettier --experimental-cli --write .",
"style": "prettier --experimental-cli --check .",
"verify": "pnpm run --stream --recursive --parallel --include-workspace-root '/^verify:.+$/'",
"verify:style": "pnpm run style",
"verify:lint": "pnpm lint",
"format": "pnpm lint:fix && pnpm style:fix",
"codegen": "pnpm run build:tooling && pnpm run --parallel --workspace-concurrency Infinity '/^(codegen:.+)$/'",
"prebuild": "pnpm run build:tooling && pnpm run --parallel --workspace-concurrency Infinity 'prebuild'",
"build:tooling": "tsc --build ./packages/lex/lex-builder/tsconfig.build.json ./packages/lex-cli/tsconfig.build.json",
"build:ts": "tsc --build tsconfig.json",
"build": "pnpm run build:ts",
"postbuild": "pnpm run --parallel build:ui",
"i18n": "pnpm run --parallel i18n:extract",
"dev": "NODE_ENV=development pnpm run --recursive --parallel --stream '/^(dev|dev:.+)$/'",
"dev:ts": "tsc --build tsconfig.json --preserveWatchOutput --watch",
"test": "LOG_ENABLED=false ./packages/dev-infra/with-test-redis-and-db.sh pnpm --recursive --stream test",
"test:withFlags": "pnpm run test",
"test:unit": "vitest --run",
"bench": "vitest bench --run",
"changeset": "changeset",
"publish:ci": "pnpm build && changeset tag && pnpm publish -r --provenance --no-git-checks --access public",
"version-packages": "changeset version && git add ."
},
"devDependencies": {
"@atproto/dev-env": "workspace:^",
"@changesets/changelog-github": "^0.7.0",
"@changesets/cli": "^2.31.0",
"@eslint/js": "^9.39.5",
"@jest/globals": "^30.0.0",
"@swc/core": "^1.3.42",
"@swc/jest": "^0.2.24",
"@tsconfig/node22": "^22.0.5",
"@types/jest": "^30.0.0",
"@types/node": "^22",
"@typescript-eslint/eslint-plugin": "^8.59.2",
"@typescript-eslint/parser": "^8.59.2",
"@typescript/native": "npm:typescript@^7.0.2",
"@vitest/coverage-v8": "^4.1.10",
"dotenv": "^16.0.3",
"eslint": "^10.8.0",
"eslint-config-prettier": "^10.1.8",
"eslint-import-resolver-typescript": "^4.4.5",
"eslint-plugin-import-x": "^4.17.1",
"eslint-plugin-n": "^17.15.0",
"eslint-plugin-prettier": "^5.1.3",
"globals": "^15.15.0",
"jest": "^30.0.0",
"node-gyp": "^9.3.1",
"pino-pretty": "^9.1.0",
"prettier": "^3.9.6",
"prettier-config-standard": "^7.0.0",
"prettier-plugin-tailwindcss": "^0.6.11",
"typescript": "npm:@typescript/typescript6@^6.0.2",
"vitest": "^4.1.10"
},
"workspace": [
"packages/*",
"packages/lex/*",
"packages/oauth/*",
"packages/internal/*"
],
"workspaces": {
"packages": [
"packages/*",
"packages/lex/*",
"packages/oauth/*",
"packages/internal/*"
]
}
}