-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 783 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 783 Bytes
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
{
"name": "@localizesh/processor-json",
"description": "A Localize.sh processor for JSON files",
"repository": "localizesh/processor-json",
"license": "Apache-2.0",
"author": "Localize.sh",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
}
},
"bin": {
"localize-processor-json": "dist/bin.js"
},
"files": [
"/dist"
],
"scripts": {
"clean": "rm -rf dist",
"build": "npm run clean && tsc --project tsconfig.build.json",
"test": "vitest run"
},
"dependencies": {
"@localizesh/sdk": "^2.1.0"
},
"devDependencies": {
"@types/node": "^25.2.0",
"typescript": "^5.9.3",
"vitest": "^4.0.18"
}
}