-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
80 lines (80 loc) · 2.29 KB
/
package.json
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
{
"name": "linguify",
"version": "1.3.1",
"description": "Translation manager",
"private": false,
"type": "module",
"main": "./dist/index.js",
"bin": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"scripts": {
"dev": "concurrently -n WATCH,LINGUIFY,CLIENT -c green,cyan,magenta \"pnpm linguifyWatch\" \"pnpm linguifyDev\" \"pnpm clientDev\"",
"linguifyDev": "nodemon dist/index.js --ignore build/**/*.json",
"clientDev": "cd src/client && pnpm dev",
"linguifyWatch": "tsup src/index.ts --format cjs,esm --dts --watch",
"build": "pnpm linguifyBuild && pnpm clientBuild",
"postbuild": "ncp src/client/dist dist/client",
"linguifyBuild": "pnpm run lint && tsup src/index.ts --format cjs,esm --dts",
"clientBuild": "cd src/client && pnpm build",
"lint": "tsc",
"ci": "pnpm run build",
"release": "pnpm run ci && changeset publish"
},
"dependencies": {
"chalk": "^5.3.0",
"commander": "^12.1.0",
"cors": "^2.8.5",
"dirname-filename-esm": "^1.1.1",
"express": "^4.19.2",
"findup-sync": "^5.0.0",
"fs": "0.0.1-security",
"joi": "^17.13.3",
"lodash": "^4.17.21",
"node-xlsx": "^0.24.0",
"path": "^0.12.7",
"prompts": "^2.4.2"
},
"devDependencies": {
"@changesets/cli": "^2.27.7",
"@ianvs/prettier-plugin-sort-imports": "^4.3.0",
"@types/cors": "^2.8.17",
"@types/express": "^4.17.21",
"@types/express-serve-static-core": "^4.19.5",
"@types/findup-sync": "^4.0.5",
"@types/lodash": "^4.17.6",
"@types/node": "^20.14.9",
"@types/prompts": "^2.4.9",
"concurrently": "^8.2.2",
"ncp": "^2.0.0",
"nodemon": "^3.1.4",
"prettier": "^3.3.2",
"tsup": "^8.1.0",
"typescript": "^5.5.3"
},
"files": [
"dist/**/*",
"README.md",
"LICENSE",
"CHANGELOG.md"
],
"keywords": [
"i18n",
"localize",
"translation"
],
"license": "MIT",
"author": {
"name": "Rawand Faraidun",
"email": "[email protected]",
"url": "https://github.com/rawand-faraidun"
},
"repository": {
"type": "git",
"url": "https://github.com/rawand-faraidun/linguify.git"
},
"homepage": "https://github.com/rawand-faraidun/linguify#readme",
"bugs": {
"url": "https://github.com/rawand-faraidun/linguify/issues"
}
}