-
Notifications
You must be signed in to change notification settings - Fork 880
Expand file tree
/
Copy pathpackage.json
More file actions
93 lines (93 loc) · 3.13 KB
/
Copy pathpackage.json
File metadata and controls
93 lines (93 loc) · 3.13 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
{
"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"
},
"devEngines": {
"runtime": {
"name": "node",
"version": ">=22",
"onFail": "error"
},
"packageManager": {
"name": "pnpm",
"version": "11.5.2",
"onFail": "error"
}
},
"scripts": {
"lint:fix": "pnpm lint --fix",
"lint": "NODE_OPTIONS=--max_old_space_size=4096 eslint . --ext .ts,.js,.tsx,.jsx",
"style:fix": "prettier --write .",
"style": "prettier --check .",
"verify": "pnpm --stream '/^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": "tsgo --build ./packages/lex/lex-builder/tsconfig.build.json ./packages/lex-cli/tsconfig.build.json",
"build:ts": "tsgo --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": "tsgo --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",
"@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-preview": "^7.0.0-beta",
"@vitest/coverage-v8": "4.0.16",
"dotenv": "^16.0.3",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-import-resolver-typescript": "^3.7.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-n": "^17.15.0",
"eslint-plugin-prettier": "^5.1.3",
"jest": "^30.0.0",
"node-gyp": "^9.3.1",
"pino-pretty": "^9.1.0",
"prettier": "^3.2.5",
"prettier-config-standard": "^7.0.0",
"prettier-plugin-tailwindcss": "^0.6.11",
"vitest": "^4.0.16"
},
"workspace": [
"packages/*",
"packages/lex/*",
"packages/oauth/*",
"packages/internal/*"
],
"workspaces": {
"packages": [
"packages/*",
"packages/lex/*",
"packages/oauth/*",
"packages/internal/*"
]
}
}