-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
107 lines (107 loc) · 3.33 KB
/
package.json
File metadata and controls
107 lines (107 loc) · 3.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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
{
"$schema": "https://json.schemastore.org/package.json",
"name": "@nanoforge-dev/schematics",
"version": "2.1.1",
"description": "NanoForge Schematics",
"keywords": [
"nanoforge",
"game",
"schematics"
],
"homepage": "https://github.com/NanoForge-dev/schematics#readme",
"bugs": "https://github.com/NanoForge-dev/schematics/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/schematics.git"
},
"funding": "https://github.com/NanoForge-dev/schematics?sponsor",
"scripts": {
"build": "tsc --noEmit && tsup",
"postbuild": "pnpm run copy:collection && pnpm run copy:lib",
"copy:collection": "cpx src/collection.json dist && cpx 'src/libs/**/schema.json' dist/libs",
"copy:lib": "cpx 'src/libs/**/files/**/{.,}*' dist/libs",
"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 '.'",
"release": "cliff-jumper",
"test": "pnpm run test:unit && pnpm run test:e2e",
"test:unit": "vitest run -c vitest.config.ts",
"test:unit:watch": "vitest -c vitest.config.ts",
"test:e2e": "vitest run -c vitest.config.e2e.ts",
"test:e2e:watch": "vitest -c vitest.config.e2e.ts",
"test:coverage": "pnpm run test:unit --coverage && pnpm run test:e2e --coverage",
"prepare": "husky"
},
"dependencies": {
"@angular-devkit/core": "catalog:schematics",
"@angular-devkit/schematics": "catalog:schematics",
"rxjs": "catalog:schematics"
},
"devDependencies": {
"@angular-devkit/schematics-cli": "catalog:tests",
"@commitlint/cli": "catalog:ci",
"@commitlint/config-conventional": "catalog:ci",
"@favware/cliff-jumper": "catalog:ci",
"@nanoforge-dev/actions": "catalog:ci",
"@nanoforge-dev/utils-eslint-config": "catalog:lint",
"@nanoforge-dev/utils-prettier-config": "catalog:lint",
"@trivago/prettier-plugin-sort-imports": "catalog:lint",
"@types/node": "catalog:core",
"@vitest/coverage-v8": "catalog:tests",
"cpx2": "catalog:build",
"eslint": "catalog:lint",
"husky": "catalog:ci",
"lint-staged": "catalog:ci",
"prettier": "catalog:lint",
"tsup": "catalog:build",
"typescript": "catalog:build",
"vitest": "catalog:tests"
},
"packageManager": "pnpm@10.29.3",
"engines": {
"node": "25"
},
"publishConfig": {
"access": "public"
},
"schematics": "./dist/collection.json",
"lint-staged": {
"**": [
"prettier --ignore-unknown --write"
],
"src/**/*.ts": [
"eslint --fix"
]
}
}