-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.99 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 1.99 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
{
"$schema": "https://json.schemastore.org/package.json",
"name": "@nanoforge-dev/nanoforge",
"version": "0.0.0",
"description": "NanoForge Engine",
"homepage": "https://github.com/NanoForge-dev/Engine#readme",
"bugs": "https://github.com/NanoForge-dev/Engine/issues",
"license": "MIT",
"contributors": [
"Bill <timothe.jacquot@epitech.eu>",
"Exelo <exelo.corp@gmail.com>",
"Fexkoser <martin.fillon@epitech.eu>",
"Tchips <leo.outmizguine@epitech.eu>"
],
"type": "module",
"repository": {
"type": "git",
"url": "git+https://github.com/NanoForge-dev/Engine.git"
},
"funding": "https://github.com/NanoForge-dev/Engine?sponsor",
"scripts": {
"build": "turbo run build --concurrency=5",
"format": "prettier --write . && turbo run format --concurrency=5",
"lint": "prettier --check . && turbo run lint --concurrency=5",
"test": "pnpm run test:unit && pnpm run test:e2e",
"test:unit": "turbo run test:unit --concurrency=5",
"test:e2e": "vitest run --config vitest.config.e2e.ts",
"prepare": "husky"
},
"dependencies": {
"tslib": "^2.8.1"
},
"devDependencies": {
"@commitlint/cli": "catalog:ci",
"@commitlint/config-conventional": "catalog:ci",
"@nanoforge-dev/actions": "catalog:ci",
"@nanoforge-dev/utils-eslint-config": "workspace:*",
"@nanoforge-dev/utils-prettier-config": "workspace:*",
"@trivago/prettier-plugin-sort-imports": "catalog:lint",
"@types/node": "catalog:core",
"@vitest/coverage-v8": "catalog:test",
"eslint": "catalog:lint",
"husky": "catalog:ci",
"lint-staged": "catalog:ci",
"prettier": "catalog:lint",
"tsup": "catalog:build",
"turbo": "catalog:core",
"typedoc": "catalog:docs",
"typedoc-plugin-markdown": "catalog:docs",
"typescript": "catalog:core",
"vitest": "catalog:test"
},
"packageManager": "pnpm@10.29.3",
"engines": {
"node": "25"
},
"private": true,
"lint-staged": {
"**": [
"prettier --ignore-unknown --write"
]
}
}