-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
82 lines (82 loc) · 2.4 KB
/
package.json
File metadata and controls
82 lines (82 loc) · 2.4 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
{
"name": "linguify",
"version": "1.4.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": {
"start": "node ./dist/index.js",
"dev": "concurrently -n SERVER,CLIENT -c green,magenta \"pnpm dev:server\" \"pnpm dev:client\"",
"dev:server": "concurrently -n WATCH,RUN \"pnpm watch:server\" \"nodemon dist/index.js --ignore build/**/*.json\"",
"dev:client": "cd src/client && pnpm dev",
"watch:server": "tsup src/index.ts --format cjs,esm --dts --minify --watch",
"build": "pnpm build:server && pnpm build:client",
"postbuild": "ncp src/client/dist dist/client",
"build:server": "pnpm run lint && tsup src/index.ts --format cjs,esm --dts --minify",
"build:client": "cd src/client && pnpm build",
"lint": "tsc",
"ci": "pnpm run build",
"release": "pnpm run ci && changeset publish"
},
"dependencies": {
"chalk": "^5.4.1",
"commander": "^13.1.0",
"cors": "^2.8.5",
"dirname-filename-esm": "^1.1.2",
"express": "^4.21.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.28.1",
"@ianvs/prettier-plugin-sort-imports": "^4.4.1",
"@types/cors": "^2.8.17",
"@types/express": "^5.0.0",
"@types/express-serve-static-core": "^5.0.6",
"@types/findup-sync": "^4.0.5",
"@types/lodash": "^4.17.16",
"@types/node": "^22.13.10",
"@types/prompts": "^2.4.9",
"concurrently": "^9.1.2",
"ncp": "^2.0.0",
"nodemon": "^3.1.9",
"prettier": "^3.5.3",
"prettier-plugin-tailwindcss": "^0.6.11",
"tsup": "^8.4.0",
"typescript": "^5.8.2"
},
"files": [
"dist/**/*",
"README.md",
"LICENSE",
"CHANGELOG.md"
],
"keywords": [
"i18n",
"localize",
"translation"
],
"license": "MIT",
"author": {
"name": "Rawand Faraidun",
"email": "201.rawand@gmail.com",
"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"
}
}