-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
37 lines (37 loc) · 1019 Bytes
/
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
{
"name": "gt-libraries",
"private": true,
"workspaces": [
"packages/*",
"examples/*"
],
"scripts": {
"build": "npm run build --workspaces --if-present",
"test": "npm run test --workspaces --if-present",
"transpile": "npm run transpile --workspaces --if-present",
"release": "npm run release --workspaces --if-present",
"build:clean": "npm run build:clean --workspaces --if-present",
"format": "prettier --write \"**/*.{js,jsx,ts,tsx,json,md,yml,yaml}\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/General-Translation/gt-libraries.git"
},
"author": "General Translation, Inc.",
"license": "FSL-1.1-ALv2",
"bugs": {
"url": "https://github.com/General-Translation/gt-libraries/issues"
},
"homepage": "https://generaltranslation.com/",
"keywords": [
"react",
"translation",
"internationalization",
"localization",
"i18n"
],
"devDependencies": {
"prettier": "^3.4.2",
"typescript": "^5.7.3"
}
}