generated from egoist/ts-lib-starter
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
57 lines (57 loc) · 1.31 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
51
52
53
54
55
56
57
{
"name": "webpack-fs-routes-plugin",
"version": "0.0.1",
"description": "webpack plugin to generate routes from file system",
"publishConfig": {
"access": "public"
},
"files": [
"dist",
"client.d.ts",
"LICENSE"
],
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"exports": {
".": {
"require": "./dist/index.js",
"import": "./dist/index.mjs"
},
"./client": {
"types": "./client.d.ts"
}
},
"types": "./dist/index.d.ts",
"scripts": {
"dev": "pnpm run build-fast -- --watch --sourcemap",
"build-fast": "tsup src/index.ts --format cjs,esm",
"build": "pnpm run build-fast -- --dts-resolve",
"test": "vitest",
"prepublishOnly": "pnpm run build",
"example:v5:start": "pnpm --filter example-v5 start",
"example:v6:start": "pnpm --filter example-v6 start"
},
"license": "MIT",
"devDependencies": {
"@antfu/eslint-config": "^0.18.9",
"tsup": "5.11.13",
"typescript": "4.5.4",
"vitest": "0.7.12"
},
"dependencies": {
"chokidar": "^3.5.3",
"fast-glob": "^3.2.11",
"unplugin": "github:lxy-yz/unplugin#fork"
},
"eslintConfig": {
"extends": "@antfu",
"rules": {
"@typescript-eslint/array-type": [
"error",
{
"default": "array"
}
]
}
}
}