-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
119 lines (119 loc) · 3.82 KB
/
package.json
File metadata and controls
119 lines (119 loc) · 3.82 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
108
109
110
111
112
113
114
115
116
117
118
119
{
"$schema": "https://json.schemastore.org/package.json",
"name": "@nanoforge-dev/editor",
"version": "0.0.0",
"description": "NanoForge Editor",
"keywords": [
"nanoforge",
"game",
"editor"
],
"homepage": "https://github.com/NanoForge-dev/Editor#readme",
"bugs": "https://github.com/NanoForge-dev/Editor/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.html",
"module": "./dist/index.html",
"exports": {
"./package.json": "./package.json"
},
"type": "module",
"directories": {
"lib": "src"
},
"repository": {
"type": "git",
"url": "git+https://github.com/NanoForge-dev/Editor.git"
},
"funding": "https://github.com/NanoForge-dev/Editor?sponsor",
"scripts": {
"dev": "vite",
"build": "vite build",
"preview": "vite preview",
"check": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json",
"check:watch": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json --watch",
"lint": "prettier --check . && eslint --format=pretty src",
"format": "prettier --write . && eslint --fix --format=pretty src",
"test": "pnpm run test:unit --run",
"test:unit": "vitest",
"test:e2e": "playwright test",
"changelog": "git cliff --prepend ./CHANGELOG.md -u -c ./cliff.toml -r . --include-path '.'",
"release": "cliff-jumper",
"prepare": "husky"
},
"devDependencies": {
"@alexanderniebuhr/prettier-plugin-unocss": "catalog:css",
"@commitlint/cli": "catalog:ci",
"@commitlint/config-conventional": "catalog:ci",
"@favware/cliff-jumper": "catalog:ci",
"@iconify-json/ic": "catalog:icons",
"@iconify-json/material-icon-theme": "catalog:icons",
"@iconify-json/solar": "catalog:icons",
"@inlang/paraglide-js": "catalog:i18n",
"@nanoforge-dev/actions": "catalog:ci",
"@nanoforge-dev/utils-eslint-config": "catalog:lint",
"@nanoforge-dev/utils-prettier-config": "catalog:lint",
"@playwright/test": "catalog:test",
"@sveltejs/adapter-auto": "catalog:core",
"@sveltejs/kit": "catalog:core",
"@sveltejs/vite-plugin-svelte": "catalog:core",
"@trivago/prettier-plugin-sort-imports": "catalog:lint",
"@tsconfig/svelte": "catalog:build",
"@types/file-saver": "catalog:components",
"@unocss/extractor-svelte": "catalog:css",
"@unocss/preset-icons": "catalog:css",
"@unocss/preset-web-fonts": "catalog:css",
"@unocss/preset-wind4": "catalog:css",
"@vitest/browser-playwright": "catalog:test",
"@vitest/coverage-v8": "catalog:test",
"eslint": "catalog:lint",
"eslint-plugin-svelte": "catalog:lint",
"flowbite": "catalog:components",
"flowbite-svelte": "catalog:components",
"globals": "catalog:lint",
"husky": "catalog:ci",
"lint-staged": "catalog:ci",
"monaco-editor": "catalog:components",
"playwright": "catalog:test",
"prettier": "catalog:lint",
"prettier-plugin-svelte": "catalog:lint",
"svelte": "catalog:core",
"svelte-check": "catalog:core",
"svelte-sonner": "catalog:components",
"typescript": "catalog:build",
"typescript-eslint": "catalog:lint",
"unocss": "catalog:css",
"vite": "catalog:core",
"vitest": "catalog:test",
"vitest-browser-svelte": "catalog:test"
},
"packageManager": "pnpm@10.28.1",
"engines": {
"node": "25"
},
"publishConfig": {
"access": "public"
},
"lint-staged": {
"**": [
"prettier --ignore-unknown --write"
],
"src/**/*.{ts,svelte}": [
"eslint --fix"
]
},
"dependencies": {
"svelte-kit-sessions": "catalog:core",
"file-saver": "catalog:components",
"idb": "catalog:components",
"jszip": "catalog:components"
}
}