-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.23 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
{
"name": "transplate",
"version": "0.3.1",
"description": "A template based translation utility",
"keywords": [
"translate",
"translation",
"i18n",
"l10n"
],
"repository": {
"type": "git",
"url": "git+https://github.com/ubermanu/transplate.git"
},
"license": "MIT",
"author": "Emmanuel Vodor <[email protected]>",
"type": "module",
"exports": {
".": {
"import": "./dist/transplate.mjs",
"require": "./dist/transplate.cjs",
"types": "./dist/transplate.d.ts"
}
},
"main": "dist/transplate.cjs",
"module": "dist/transplate.mjs",
"types": "dist/transplate.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "rollup -c",
"test": "NODE_OPTIONS='--loader=tsx' NODE_NO_WARNINGS=1 ava",
"prepublishOnly": "pnpm run build"
},
"prettier": "@ubermanu/prettier-config",
"dependencies": {
"pofile": "^1.1.4"
},
"devDependencies": {
"@rollup/plugin-terser": "^0.4.3",
"@rollup/plugin-typescript": "^11.1.3",
"@types/node": "^20.5.7",
"@ubermanu/prettier-config": "^3.1.0",
"ava": "^5.3.1",
"prettier": "^3.0.3",
"rollup": "^3.28.1",
"rollup-plugin-dts": "^6.0.1",
"tsx": "^3.12.8",
"typescript": "^5.2.2"
}
}