-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
85 lines (85 loc) · 2.57 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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
{
"version": "2.0.14-2",
"name": "@taikai/locales",
"description": "Expose the locales for the TAIKAI platform",
"author": "taikai",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/layerx-labs/taikai-locales.git"
},
"main": "dist/lib/index.js",
"typings": "dist/lib/index.d.ts",
"files": [
"dist/lib"
],
"engines": {
"node": "18"
},
"scripts": {
"generateTypes": "npx tsx ./scripts/generate-frontend-types.ts && npm run format",
"checkUnusedI18nMessages": "npx tsx ./scripts/check-unused-translations.ts",
"clean": "rimraf dist/",
"copy-files": "copyfiles -u 1 lib/**/*.hbs dist/lib/",
"lint": "eslint . --ext ts --ext js --fix",
"format": "prettier --write **/*.{js,ts,json}",
"build": "npm run clean && tsc && npm run copy-files && tscpaths -p ./tsconfig.json -s ./ -o ./dist",
"deploy": "npm publish --access public",
"postbuild": "npm pack && npx tsx ./scripts/update-lib-tester-pkg-json.ts",
"test": "jest -u --config=jest.config.js --noStackTrace --detectOpenHandles --no-cache --passWithNoTests",
"prepare": "husky install"
},
"keywords": [
"locales",
"taikai-locales",
"taikai",
"taikai translations"
],
"bugs": {
"url": "https://github.com/layerx-labs/taikai-locales/issues"
},
"homepage": "https://github.com/layerx-labs/taikai-locales#readme",
"dependencies": {
"handlebars": "^4.7.8"
},
"husky": {
"hooks": {
"pre-commit": "tsdx lint && npm run test"
}
},
"devDependencies": {
"@types/jest": "^29.5.7",
"@typescript-eslint/eslint-plugin": "^5.22.0",
"@typescript-eslint/parser": "^5.22.0",
"copyfiles": "^2.4.1",
"dotenv": "^16.3.1",
"eslint": "8.14.0",
"eslint-config-node": "^4.1.0",
"eslint-config-prettier": "^8.5.0",
"eslint-import-resolver-alias": "^1.1.2",
"eslint-import-resolver-typescript": "^2.7.0",
"eslint-plugin-flowtype": "^8.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jest": "^27.6.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-simple-import-sort": "^7.0.0",
"globby": "^14.0.1",
"husky": "^8.0.3",
"jest": "29.7.0",
"jest-expect-message": "^1.1.3",
"lint-staged": "^12.4.0",
"prettier": "^2.6.2",
"prettier-eslint": "^14.0.0",
"rimraf": "^5.0.5",
"ts-jest": "29.1.1",
"ts-node-dev": "^2.0.0",
"tscpaths": "0.0.9",
"tslib": "2.6.2",
"typescript": "5.2.2"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org"
}
}