-
-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.53 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.53 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
{
"name": "@nkzw/remdx-private",
"version": "19.1.0",
"private": true,
"author": "Christoph Nakazawa <christoph.pojer@gmail.com>",
"repository": {
"type": "git",
"url": "git://github.com/cpojer/remdx.git"
},
"type": "module",
"scripts": {
"build": "(cd ./packages/create-remdx && pnpm build) && (cd ./packages/remdx && pnpm build) && (cd ./packages/vite-plugin-remdx && pnpm build)",
"dev": "cd examples/tokyo && pnpm dev",
"dev:setup": "pnpm install",
"dev:update-deps": "rm -rf pnpm-lock.yaml node_modules/ **/node_modules && pnpm dev:setup",
"format": "oxfmt",
"lint": "oxlint",
"lint:format": "oxfmt --check",
"test": "npm-run-all --parallel tsc:check vitest:run lint lint:format",
"tsc:check": "tsc",
"vitest:run": "vitest run"
},
"devDependencies": {
"@babel/plugin-syntax-typescript": "^7.28.6",
"@nkzw/eslint-plugin": "^2.0.0",
"@nkzw/oxlint-config": "^1.0.1",
"@styled/typescript-styled-plugin": "^1.0.1",
"@swc/core": "^1.15.11",
"@types/node": "^25.3.0",
"eslint": "^10.0.2",
"eslint-plugin-no-only-tests": "^3.3.0",
"eslint-plugin-perfectionist": "^5.6.0",
"eslint-plugin-react-hooks": "^7.0.1",
"eslint-plugin-unused-imports": "^4.4.1",
"nodemon": "^3.1.14",
"npm-run-all2": "^8.0.4",
"oxfmt": "^0.34.0",
"oxlint": "^1.49.0",
"ts-node": "^10.9.2",
"tsdown": "^0.20.3",
"typescript": "^5.9.3",
"vite": "^7.3.1",
"vitest": "^4.0.18"
},
"engines": {
"node": ">=24.0.0",
"pnpm": ">=10.30.1"
}
}