-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.26 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.26 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
{
"name": "@nkzw/library-template",
"version": "0.0.0",
"description": "Library.",
"homepage": "https://github.com/nkzw-tech/library-template",
"license": "MIT",
"author": {
"name": "Christoph Nakazawa",
"email": "christoph.pojer@gmail.com"
},
"repository": {
"type": "git",
"url": "https://github.com/nkzw-tech/library-template"
},
"files": [
"lib"
],
"type": "module",
"main": "./lib/index.mjs",
"types": "./lib/index.d.mts",
"scripts": {
"build": "tsdown -d lib --target=node24",
"format": "oxfmt --write .",
"lint": "oxlint .",
"lint:format": "oxfmt --check .",
"test": "npm-run-all --parallel tsc:check lint lint:format vitest:run",
"tsc:check": "tsgo",
"vitest:run": "vitest run"
},
"devDependencies": {
"@nkzw/eslint-plugin": "^2.0.0",
"@nkzw/oxlint-config": "^1.0.1",
"@types/node": "^25.2.3",
"@typescript/native-preview": "7.0.0-dev.20260212.1",
"eslint-plugin-no-only-tests": "^3.3.0",
"eslint-plugin-perfectionist": "^5.5.0",
"eslint-plugin-react-hooks": "^7.0.1",
"eslint-plugin-unused-imports": "^4.4.1",
"npm-run-all2": "^8.0.4",
"oxfmt": "^0.32.0",
"oxlint": "^1.47.0",
"tsdown": "^0.20.3",
"typescript": "^5.9.3",
"vitest": "^4.0.18"
}
}