-
Notifications
You must be signed in to change notification settings - Fork 1.1k
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.52 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 1.52 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": "@huggingface/transformers-monorepo",
"version": "0.0.1",
"private": true,
"description": "Monorepo for Hugging Face Transformers.js and framework integrations",
"type": "module",
"packageManager": "pnpm@10.28.1",
"scripts": {
"build": "pnpm -r build",
"test": "pnpm -r test",
"format": "prettier --write .",
"format:check": "prettier --check .",
"dev": "node scripts/dev.mjs"
},
"repository": {
"type": "git",
"url": "git+https://github.com/huggingface/transformers.js.git"
},
"author": "Hugging Face",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/huggingface/transformers.js/issues"
},
"homepage": "https://github.com/huggingface/transformers.js#readme",
"devDependencies": {
"prettier": "3.8.1",
"typescript": "5.9.3"
},
"prettier": {
"overrides": [
{
"files": [
"./packages/*/src/**/*.{js,mjs,cjs,ts}"
],
"options": {
"singleQuote": true,
"tabWidth": 4,
"printWidth": 120
}
},
{
"files": [
"./packages/*/tests/**/*.{js,mjs,cjs,ts}"
],
"options": {
"tabWidth": 2,
"printWidth": 10000000
}
},
{
"files": [
"./scripts/**/*.{js,mjs,cjs,ts}",
"./packages/*/scripts/**/*.{js,mjs,cjs,ts}",
"./packages/*/docs/**/*.{js,mjs,cjs,ts}"
],
"options": {
"tabWidth": 2,
"printWidth": 160
}
}
]
}
}