-
-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
50 lines (50 loc) · 1.56 KB
/
package.json
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
{
"name": "@nkzw/remdx-private",
"version": "0.15.0",
"author": "Christoph Nakazawa <christoph.pojer@gmail.com>",
"private": true,
"repository": {
"type": "git",
"url": "git://github.com/cpojer/remdx.git"
},
"type": "module",
"engines": {
"node": ">=18.7.0",
"pnpm": ">=7.9.1"
},
"devDependencies": {
"@babel/plugin-syntax-typescript": "^7.25.9",
"@ianvs/prettier-plugin-sort-imports": "^4.4.0",
"@nkzw/eslint-config": "^2.0.0",
"@styled/typescript-styled-plugin": "^1.0.1",
"@swc/core": "^1.10.4",
"@types/node": "^22.10.5",
"dts-bundle-generator": "^9.5.1",
"esbuild": "^0.24.2",
"eslint": "^9.17.0",
"nodemon": "^3.1.9",
"npm-run-all": "^4.1.5",
"prettier": "^3.4.2",
"ts-node": "^10.9.2",
"typescript": "^5.7.3",
"vite": "^6.0.7",
"vitest": "^2.1.8"
},
"pnpm": {
"overrides": {
"shiki": "^0.11.0"
}
},
"scripts": {
"build": "(cd ./packages/create-remdx && pnpm build) && (cd ./packages/remdx && pnpm build) && (cd ./packages/vite-plugin-remdx && pnpm build) && dts-bundle-generator -o ./packages/remdx/index.d.ts ./packages/remdx/index.tsx",
"dev:setup": "pnpm install",
"dev:update-deps": "rm -rf pnpm-lock.yaml node_modules/ **/node_modules && pnpm dev:setup",
"dev": "cd examples/tokyo && pnpm dev",
"format": "prettier --write .",
"lint:format": "prettier --cache --check .",
"lint": "eslint --cache .",
"test": "npm-run-all --parallel tsc:check vitest:run lint lint:format",
"tsc:check": "tsc",
"vitest:run": "vitest run"
}
}