-
-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.33 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 1.33 KB
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": "@skyra/i18next-backend",
"version": "2.0.3",
"description": "A fast and modern filesystem-based i18next backend for Node.js.",
"author": "@skyra",
"license": "Apache-2.0",
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"type": "commonjs",
"exports": {
"import": "./dist/index.mjs",
"require": "./dist/index.js",
"types": "./dist/index.d.ts"
},
"sideEffects": false,
"scripts": {
"build": "tsup",
"watch": "tsup --watch",
"typecheck": "tsc -p tsconfig.eslint.json",
"lint": "eslint src --ext ts --fix -c ../../package.json",
"prepack": "yarn build",
"bump": "cliff-jumper",
"check-update": "cliff-jumper --dry-run"
},
"dependencies": {
"tslib": "^2.6.2"
},
"devDependencies": {
"@favware/cliff-jumper": "^2.1.1",
"@types/node": "^18.17.4",
"i18next": "^23.4.4",
"tsup": "^7.2.0",
"typescript": "^5.1.6"
},
"repository": {
"type": "git",
"url": "git+https://github.com/skyra-project/archid-components.git",
"directory": "packages/i18next-backend"
},
"files": [
"dist/"
],
"engines": {
"node": ">=16.9.0",
"npm": ">=8.0.0"
},
"keywords": [
"discord",
"api",
"http",
"skyra",
"typescript",
"ts",
"yarn"
],
"bugs": {
"url": "https://github.com/skyra-project/archid-components/issues"
},
"publishConfig": {
"access": "public"
}
}