-
Notifications
You must be signed in to change notification settings - Fork 32
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.29 KB
/
Copy pathpackage.json
File metadata and controls
50 lines (50 loc) · 1.29 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
50
{
"name": "pathpida",
"version": "0.0.0",
"description": "TypeScript friendly pages and static path generator for Next.js and Vinext",
"author": "Solufa",
"license": "MIT",
"type": "module",
"bin": "bin/index.js",
"scripts": {
"dev": "npm run build && tsx projects/build.ts",
"build": "npm run rimraf && tsc -p tsconfig.build.json",
"rimraf": "node -e \"require('fs').existsSync('dist') && require('fs').rmSync('dist', { recursive: true, force: true })\"",
"lint": "oxlint && oxfmt --check",
"lint:fix": "oxlint --fix && oxfmt",
"test": "vitest run",
"typecheck": "tsc --noEmit"
},
"homepage": "https://github.com/aspida/pathpida#readme",
"repository": {
"type": "git",
"url": "https://github.com/aspida/pathpida"
},
"files": [
"dist"
],
"keywords": [
"typescript",
"nextjs",
"vinext",
"pathpida"
],
"dependencies": {
"chokidar": "^5.0.0",
"ignore": "^7.0.9",
"minimist": "^1.2.8"
},
"devDependencies": {
"@types/minimist": "^1.2.5",
"@types/node": "^26.5.1",
"@types/react": "^19.3.0",
"@types/react-dom": "^19.3.0",
"next": "^16.3.5",
"oxfmt": "^0.67.0",
"oxlint": "^1.82.0",
"tsx": "^4.23.13",
"typescript": "^6.0.3",
"vinext": "^1.0.0-beta.9",
"vitest": "^5.0.0"
}
}