-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.14 KB
/
Copy pathpackage.json
File metadata and controls
40 lines (40 loc) · 1.14 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
{
"name": "clouddia",
"description": "Online Diagram Editor",
"homepage": "https://clouddia.app/",
"main": "src/main.ts",
"repository": "git@github.com:01397/clouddia.git",
"author": "01397 <41501869+01397@users.noreply.github.com>",
"license": "GPL-3.0-or-later",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview",
"lint": "npm run eslint && npm run prettier",
"lint:fix": "npm run eslint:fix && npm run prettier:fix",
"eslint": "eslint src",
"eslint:fix": "eslint src --fix",
"prettier": "prettier --check './src/**/*.{ts,tsx}'",
"prettier:fix": "prettier --write './src/**/*.{ts,tsx}'"
},
"dependencies": {
"encoding-japanese": "^2.2.0"
},
"devDependencies": {
"@eslint/js": "^9.22.0",
"@types/encoding-japanese": "^2.2.1",
"@typescript-eslint/parser": "^8.26.0",
"eslint": "^9.22.0",
"eslint-config-prettier": "^10.1.1",
"jiti": "^2.4.2",
"prettier": "^3.5.3",
"typescript": "^5.8.2",
"typescript-eslint": "^8.26.0",
"vite": "^6.3.6"
},
"private": true,
"engines": {
"node": ">=20.0.0",
"npm": ">=9.8.0"
}
}