-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 2 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 2 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
{
"$schema": "https://json.schemastore.org/package.json",
"name": "@nanoforge-dev/nanoforge",
"version": "1.3.1",
"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",
"docs": "turbo run mint-tsdocs --concurrency=5"
},
"devDependencies": {
"@commitlint/cli": "catalog:ci",
"@commitlint/config-conventional": "catalog:ci",
"@microsoft/api-extractor": "catalog:docs",
"@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",
"mint-tsdocs": "catalog:docs",
"prettier": "catalog:lint",
"tsdown": "catalog:build",
"turbo": "catalog:core",
"typescript": "catalog:core",
"vitest": "catalog:test"
},
"packageManager": "pnpm@11.3.0",
"engines": {
"node": "25"
},
"private": true,
"lint-staged": {
"**": [
"prettier --ignore-unknown --write"
]
}
}