-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
91 lines (91 loc) · 2.22 KB
/
Copy pathpackage.json
File metadata and controls
91 lines (91 loc) · 2.22 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
{
"name": "filesystem-routing",
"description": "Router-neutral file-system routing: scans a route directory into a neutral route manifest with pluggable conventions and delivery adapters",
"license": "MIT",
"version": "0.2.0",
"author": "Ryan Carniato",
"homepage": "https://github.com/solidjs/filesystem-routing#readme",
"repository": {
"type": "git",
"url": "https://github.com/solidjs/filesystem-routing"
},
"bugs": {
"url": "https://github.com/solidjs/filesystem-routing/issues"
},
"keywords": [
"file-system routing",
"file routes",
"router",
"vite",
"vite-plugin",
"solid"
],
"sideEffects": false,
"packageManager": "pnpm@11.1.1",
"publishConfig": {
"access": "public"
},
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"./tree": {
"types": "./dist/tree.d.ts",
"default": "./dist/tree.js"
},
"./vite": {
"types": "./dist/vite/index.d.ts",
"default": "./dist/vite/index.js"
},
"./api": {
"types": "./dist/api.d.ts",
"default": "./dist/api.js"
},
"./types": {
"types": "./types.d.ts"
}
},
"files": [
"dist",
"types.d.ts"
],
"scripts": {
"build": "rm -rf dist && tsc",
"prepublishOnly": "npm run build",
"test": "vitest run",
"test:watch": "vitest",
"pretty": "prettier --write \"{src,test}/**/*.ts\"",
"typecheck:dist": "pnpx @arethetypeswrong/cli --pack . --profile esm-only",
"release": "pnpm build && changeset publish"
},
"dependencies": {
"@babel/core": "^7.29.0",
"@types/babel__core": "^7.20.5",
"@types/babel__traverse": "^7.28.0",
"@types/micromatch": "^4.0.10",
"fast-glob": "^3.3.3",
"micromatch": "^4.0.8",
"oxc-parser": "^0.139.0",
"radix3": "^1.1.2"
},
"peerDependencies": {
"vite": "^6.0.0 || ^7.0.0 || ^8.0.0"
},
"peerDependenciesMeta": {
"vite": {
"optional": true
}
},
"devDependencies": {
"@changesets/cli": "^2.31.1",
"@types/node": "^22.10.0",
"prettier": "^3.4.1",
"typescript": "^5.7.2",
"vite": "^6.0.0",
"vitest": "^2.1.6"
}
}