-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 729 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 729 Bytes
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
{
"name": "codelper",
"private": true,
"version": "0.0.0",
"type": "module",
"entry":"src/index.ts",
"scripts": {
"dev": "vite",
"build": "tsup ./src",
"preview": "vite preview",
"spell-check": "cspell .",
"type-check": "tsc --noEmit",
"lint": "eslint ./src/*",
"lint:fix": "eslint --fix ./src/*",
"test":"vitest"
},
"devDependencies": {
"@eslint/js": "^9.27.0",
"@eslint/json": "^0.12.0",
"@typescript-eslint/eslint-plugin": "^8.32.1",
"cspell": "^9.0.2",
"eslint": "^9.27.0",
"globals": "^16.1.0",
"tsup": "^8.5.0",
"typescript": "~5.8.3",
"typescript-eslint": "^8.32.1",
"vite": "^6.3.5",
"vitest": "^3.2.4"
},
"license": "MIT"
}