generated from graasp/graasp-repo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
81 lines (81 loc) · 2.24 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
{
"name": "@graasp/translations",
"version": "1.43.0",
"type": "module",
"engines": {
"node": ">=20.0.0"
},
"source": "./src/index.ts",
"exports": {
".": {
"require": {
"types": "./cjs/index.d.cts",
"default": "./cjs/index.cjs"
},
"import": {
"types": "./esm/index.d.ts",
"default": "./esm/index.js"
}
}
},
"description": "Graasp Translations",
"repository": {
"type": "git",
"url": "https://github.com/graasp/graasp-translations"
},
"license": "AGPL-3.0-only",
"author": "Graasp",
"contributors": [
"Juan Carlos Farah",
"Kim Lan Phan Hoang",
"Víctor González",
"Basile Spaenlehauer",
"Alexandre Chau",
"Julien Torrent",
"Jérémy La Scala"
],
"scripts": {
"prepack": "yarn build",
"prepare": "yarn build && yarn hooks:install",
"build": "yarn build:esm && yarn build:cjs",
"build:cjs": "unbuild && echo '{\"type\": \"commonjs\"}' > cjs/package.json",
"build:esm": "tsc -p tsconfig.esm.json && tsc-alias -p tsconfig.esm.json && echo '{\"type\": \"module\"}' > esm/package.json",
"prettier:check": "prettier --check {src,test}/**/*.{js,ts,tsx,json}",
"prettier:write": "prettier --write {src,test}/**/*.{js,ts,tsx,json}",
"hooks:install": "husky",
"test": "exit 0",
"lint": "eslint .",
"type-check": "yarn tsc --noEmit",
"check": "yarn prettier:check && yarn lint && yarn type-check",
"pre-commit": "yarn check",
"post-commit": "git status"
},
"peerDependencies": {
"i18next": "^23.8.1"
},
"devDependencies": {
"@commitlint/cli": "19.5.0",
"@commitlint/config-conventional": "19.5.0",
"@eslint/compat": "1.2.2",
"@eslint/eslintrc": "3.1.0",
"@eslint/js": "9.12.0",
"@types/node": "20.16.15",
"@typescript-eslint/eslint-plugin": "8.8.1",
"@typescript-eslint/parser": "8.8.1",
"eslint": "9.12.0",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-import": "2.31.0",
"globals": "15.11.0",
"husky": "9.1.6",
"i18next": "23.15.2",
"prettier": "3.3.3",
"tsc-alias": "1.8.10",
"typescript": "5.6.3",
"unbuild": "2.0.0"
},
"packageManager": "[email protected]",
"unbuild": {
"outDir": "cjs",
"failOnWarn": false
}
}