forked from nkzw-tech/fbtee
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 2.59 KB
/
Copy pathpackage.json
File metadata and controls
67 lines (67 loc) · 2.59 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
{
"name": "@nkzw/fbtee-internal",
"version": "1.2.7",
"private": true,
"license": "MIT",
"type": "module",
"scripts": {
"build": "pnpm -r build",
"build:all": "pnpm -r build && pnpm install && pnpm --filter=fbtee build:fbtee-strings && pnpm copy-files && (cd example && pnpm fbtee:all) && (cd website && pnpm fbtee collect && pnpm fbtee translate)",
"clean": "rm -rf packages/*/lib packages/fbtee/lib-tmp; cd example pnpm clean",
"copy-files": "find packages/* -type d -maxdepth 0 -exec cp README.md LICENSE {} \\;",
"dev": "cd example && pnpm fbtee:all && pnpm dev",
"format": "prettier --experimental-cli --write .",
"preinstall": "command -v git >/dev/null 2>&1 && git config core.hooksPath git-hooks || exit 0",
"jest": "NODE_OPTIONS=\"$NODE_OPTIONS --experimental-vm-modules --no-warnings\" node_modules/.bin/jest",
"lint": "eslint --cache .",
"lint:format": "prettier --experimental-cli --cache --check .",
"ship": "pnpm clean && pnpm build:all && pnpm test && pnpm publish -r --access public",
"test": "npm-run-all --parallel lint jest tsc:check lint:format",
"tsc:check": "tsc"
},
"devDependencies": {
"@babel/cli": "^7.28.0",
"@babel/core": "^7.28.0",
"@babel/generator": "^7.28.0",
"@babel/parser": "^7.28.0",
"@babel/plugin-syntax-import-attributes": "^7.27.1",
"@babel/plugin-syntax-typescript": "^7.27.1",
"@babel/preset-react": "^7.27.1",
"@babel/preset-typescript": "^7.27.1",
"@babel/types": "^7.28.0",
"@ianvs/prettier-plugin-sort-imports": "^4.5.1",
"@jest/globals": "30.0.4",
"@nkzw/eslint-config": "^3.0.1",
"@prettier/plugin-oxc": "^0.0.4",
"@testing-library/react": "^16.3.0",
"@types/babel__core": "^7.20.5",
"@types/babel__generator": "^7.27.0",
"@types/babel__traverse": "^7.20.7",
"@types/invariant": "^2.2.37",
"@types/jest": "^30.0.0",
"@types/json-diff": "^1.0.3",
"@types/node": "^24.0.13",
"@types/prettier-2": "npm:@types/prettier@^2.0.0",
"@types/react": "^19.1.8",
"@types/react-dom": "^19.1.6",
"@types/yargs": "^17.0.33",
"eslint": "^9.30.1",
"eslint-plugin-workspaces": "^0.11.0",
"invariant": "^2.2.4",
"jest": "^30.0.4",
"jest-environment-jsdom": "^30.0.4",
"npm-run-all2": "^8.0.4",
"nullthrows": "^1.1.1",
"prettier": "^3.6.2",
"prettier-2": "npm:prettier@^2.8.8",
"prettier-plugin-packagejson": "^2.5.18",
"prettier-plugin-tailwindcss": "^0.6.14",
"react-dom": "^19.1.0",
"tsdown": "^0.12.9",
"typescript": "^5.8.3"
},
"engines": {
"node": ">=24.0.0",
"pnpm": ">=10.0.0"
}
}