-
Notifications
You must be signed in to change notification settings - Fork 32
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.23 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.23 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
{
"name": "pathpida",
"version": "0.0.0",
"description": "TypeScript friendly pages and static path generator for Next.js",
"author": "Solufa",
"license": "MIT",
"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",
"pages",
"path"
],
"dependencies": {
"chokidar": "^4.0.3",
"ignore": "^7.0.5",
"minimist": "^1.2.8"
},
"devDependencies": {
"@types/minimist": "^1.2.5",
"@types/node": "^25.3.5",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"next": "^16.1.6",
"oxfmt": "^0.36.0",
"oxlint": "^1.51.0",
"tsx": "^4.21.0",
"typescript": "^5.9.3",
"vitest": "^3.2.4"
}
}