-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
89 lines (89 loc) · 2.33 KB
/
Copy pathpackage.json
File metadata and controls
89 lines (89 loc) · 2.33 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
{
"$schema": "https://json.schemastore.org/package.json",
"name": "@nanoforge-dev/core",
"version": "0.0.1",
"description": "NanoForge Engine - Core",
"keywords": [
"nanoforge",
"game",
"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>"
],
"files": [
"dist"
],
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.cts",
"exports": {
".": {
"require": {
"types": "./dist/index.d.cts",
"default": "./dist/index.cjs"
},
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
}
},
"./package.json": "./package.json"
},
"type": "module",
"directories": {
"lib": "src"
},
"repository": {
"type": "git",
"url": "git+https://github.com/NanoForge-dev/Engine.git",
"directory": "packages/core"
},
"funding": "",
"scripts": {
"build": "tsc --noEmit && tsup",
"lint": "prettier --check . && eslint --format=pretty src",
"format": "prettier --write . && eslint --fix --format=pretty src",
"prepack": "pnpm run build && pnpm run lint",
"changelog": "git cliff --prepend ./CHANGELOG.md -u -c ./cliff.toml -r ../../ --include-path 'packages/core/*'",
"release": "cliff-jumper"
},
"dependencies": {
"class-transformer": "^0.5.1",
"class-validator": "^0.14.2",
"@nanoforge-dev/asset-manager": "workspace:^",
"@nanoforge-dev/common": "workspace:^",
"@nanoforge-dev/input": "workspace:^"
},
"devDependencies": {
"@favware/cliff-jumper": "^6.0.0",
"@nanoforge-dev/utils-eslint-config": "workspace:^",
"@nanoforge-dev/utils-prettier-config": "workspace:^",
"@trivago/prettier-plugin-sort-imports": "^6.0.0",
"eslint": "^9.39.1",
"prettier": "^3.6.2",
"tsup": "^8.5.1",
"typescript": "^5.9.3"
},
"packageManager": "pnpm@10.22.0",
"engines": {
"node": "24.11.0"
},
"publishConfig": {
"access": "public"
},
"lint-staged": {
"**/*.ts": [
"prettier --write"
],
"src/**/*.ts": [
"eslint --fix"
]
}
}