-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
63 lines (63 loc) · 1.69 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
53
54
55
56
57
58
59
60
61
62
63
{
"name": "svelte-translate-tools",
"svelte": "dist/index.js",
"module": "dist/index.mjs",
"main": "dist/index.umd.js",
"types": "dist/ts/index.d.ts",
"scripts": {
"prebuild": "rm -rf ./dist",
"build": "rollup -c",
"dev": "rollup -c -w",
"test": "",
"validate": "",
"prepublishOnly": "npm run build",
"publish": "npm run build && npm run validate && np"
},
"devDependencies": {
"@rollup/plugin-node-resolve": "^13.0.5",
"@rollup/plugin-typescript": "^8.2.5",
"@tsconfig/svelte": "^2.0.1",
"rollup": "^2.58.0",
"rollup-plugin-execute": "^1.1.1",
"rollup-plugin-filesize": "^9.1.1",
"rollup-plugin-terser": "^7.0.2",
"svelte": "^3.43.1",
"svelte-preprocess": "^4.9.7",
"tslib": "^2.3.1",
"typescript": "^4.4.3"
},
"keywords": [
"component",
"svelte"
],
"files": [
"src",
"dist"
],
"description": "Translation tools to extract/generate/compile translation files for your Svelte App (must be used with the package [svelte-translate](https://github.com/noelmugnier/svelte-translate)) at build time.",
"version": "0.1.7",
"repository": {
"type": "git",
"url": "git+https://github.com/noelmugnier/svelte-translate-tools.git"
},
"author": "Noël Mugnier",
"license": "MIT",
"bugs": {
"url": "https://github.com/noelmugnier/svelte-translate-tools/issues"
},
"homepage": "https://github.com/noelmugnier/svelte-translate-tools#readme",
"np": {
"yarn": false,
"contents": "dist"
},
"publishConfig": {
"access": "public"
},
"dependencies": {
"fs-extra": "^10.0.0",
"glob": "^7.2.0",
"intl-messageformat": "^9.9.2",
"lodash": "^4.17.21",
"xliff": "^5.7.0"
}
}