forked from cibernox/precompile-intl-runtime
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
45 lines (45 loc) · 1.15 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
{
"name": "@fullstax/precompile-intl-runtime",
"version": "0.8.5-fullstax.1",
"description": "Runtime helpers to be used in translations precompiled by babel-plugin-precompile-intl",
"repository": "https://github.com/fllstx/precompile-intl-runtime",
"author": {
"name": "Miguel Camba",
"email": "[email protected]"
},
"license": "MIT",
"scripts": {
"build": "tsc -p tsconfig.json && tsc -p tsconfig-cjs.json",
"test": "TZ=utc jest test",
"prepublish": "npm run build"
},
"main": "dist/commonjs/index.js",
"module": "dist/modules/index.js",
"types": "dist/modules/index.d.ts",
"type": "module",
"exports": {
".": {
"import": "./dist/modules/index.js",
"require": "./dist/commonjs/index.js",
"default": "./dist/modules/index.js"
}
},
"peerDependencies": {
"svelte": "^3.37.0 || ^4.0.0"
},
"keywords": [
"helpers",
"Intl",
"precompile",
"runtime",
"i18n"
],
"devDependencies": {
"@babel/preset-env": "^7.13.0",
"@rollup/plugin-typescript": "^8.3.0",
"babel-jest": "^27.3.0",
"jest": "^27.3.0",
"svelte": "^3.44.0",
"typescript": "^4.5.0"
}
}