-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 1.12 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
{
"name": "inlang-plugin-react-intl",
"version": "0.0.1",
"description": "Allows you to use react-intl with inlang.",
"type": "module",
"scripts": {
"dev": "concurrently -n build,test -c auto \"npm run dev:plugin\" \"npm run tsc:watch\"",
"dev:plugin": "DEV=true tsx ./build.ts",
"build": "tsx ./build.ts && tsc -p tsconfig.build.json",
"test": "npm run tsc && npm run vitest",
"vitest": "vitest run",
"vitest:watch": "vitest",
"tsc": "tsc --noEmit",
"tsc:watch": "tsc --watch --noEmit"
},
"repository": {
"type": "git",
"url": "git+https://github.com/openscript-ch/inlang-plugin-react-intl.git"
},
"keywords": [
"inlang-plugin"
],
"author": "openscript Ltd.",
"license": "MIT",
"bugs": {
"url": "https://github.com/openscript-ch/inlang-plugin-react-intl/issues"
},
"homepage": "https://github.com/openscript-ch/inlang-plugin-react-intl#readme",
"devDependencies": {
"@inlang/core": "^0.9.2",
"@types/node": "^20.4.2",
"concurrently": "^8.2.0",
"esbuild": "^0.18.14",
"tsx": "^3.12.7",
"typescript": "^5.1.6",
"vitest": "^0.33.0"
}
}