forked from xvrh/localize-with-spreadsheet
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
71 lines (71 loc) · 2.07 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
64
65
66
67
68
69
70
71
{
"name": "lokse",
"description": "Tool to efficient usage of translations stored in google spreadsheet",
"version": "3.0.0",
"author": {
"name": "Lukas Horak",
"email": "[email protected]"
},
"bin": "./bin/run",
"bugs": "https://github.com/AckeeCZ/lokse/issues",
"dependencies": {
"@lokse/core": "^3.0.0",
"@oclif/command": "^1",
"@oclif/config": "^1",
"@oclif/errors": "^1.3.4",
"@oclif/plugin-help": "^3",
"@sindresorhus/slugify": "^1.1.0",
"@types/array.prototype.flat": "^1.2.1",
"@types/dedent": "^0.7.0",
"@types/inquirer": "^8.1.3",
"@types/update-notifier": "^5.0.0",
"array.prototype.flat": "^1.2.4",
"dedent": "^0.7.0",
"dotenv-flow": "^3.2.0",
"inquirer": "^8.2.0",
"open": "^7.2.1",
"ora": "^5.0.0",
"prettier": "3.3.3",
"ts-node": "10.9.2",
"tslib": "2.8.1",
"update-notifier": "^5.1.0"
},
"devDependencies": {
"@oclif/dev-cli": "^1",
"@oclif/test": "^1",
"@types/jest-when": "3.5.5",
"@types/node": "20.14.11",
"jest-when": "3.6.0"
},
"files": [
"/bin",
"/lib",
"/npm-shrinkwrap.json",
"/oclif.manifest.json"
],
"homepage": "https://github.com/AckeeCZ/lokse",
"keywords": [
"oclif"
],
"license": "MIT",
"main": "lib/index.js",
"oclif": {
"commands": "./lib/commands",
"bin": "lokse",
"plugins": [
"@oclif/plugin-help"
]
},
"repository": "AckeeCZ/lokse",
"scripts": {
"build": "tsc -b",
"clean": "rm -rf lib",
"copy:templates": "cp -r src/templates lib/templates",
"postpack": "rm -f oclif.manifest.json",
"prepack": "rm -rf lib && yarn build && yarn copy:templates && oclif-dev manifest && oclif-dev readme",
"version": "yarn readme && git add README.md",
"readme": "oclif-dev readme",
"release": "yarn version"
},
"types": "lib/index.d.ts"
}