-
-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
68 lines (68 loc) · 1.72 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
58
59
60
61
62
63
64
65
66
67
68
{
"name": "vite-plugin-hot-export-monorepo",
"version": "0.5.0",
"packageManager": "pnpm@7.1.5",
"description": "",
"author": "sudongyuer",
"license": "MIT",
"funding": "https://github.com/sponsors/sudongyuer",
"homepage": "https://github.com/sudongyuer/vite-plugin-hot-export#readme",
"repository": "https://github.com/sudongyuer/vite-plugin-hot-export",
"bugs": "https://github.com/sudongyuer/vite-plugin-hot-export/issues",
"keywords": [],
"exports": {
".": {
"types": "./dist/index.d.ts",
"require": "./dist/index.cjs",
"import": "./dist/index.mjs"
}
},
"main": "./dist/index.mjs",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"typesVersions": {
"*": {
"*": [
"./dist/*",
"./dist/index.d.ts"
]
}
},
"files": [
"dist"
],
"scripts": {
"dev": "unbuild --stub",
"build": "unbuild",
"test": "vitest",
"changeset": "changeset add",
"typecheck": "tsc --noEmit",
"lint": "eslint . --cache",
"lint-fix": "eslint . --fix",
"try": "tsx src/index.ts",
"auto-export": "pnpm export",
"build:all": "pnpm turbo run build",
"version": "changeset version",
"release": "pnpm build:all && pnpm release:only",
"release:only": "changeset publish",
"remove:node_modules": "pnpx rimraf ./**/node_modules"
},
"devDependencies": {
"@changesets/cli": "^2.23.1",
"@sudongyuer/eslint-config": "^0.1.3",
"@types/node": "^18.0.0",
"eslint": "^8.18.0",
"pnpm": "^6.3.0",
"tsx": "^3.6.0",
"turbo": "^1.2.16",
"typescript": "^4.7.4",
"unbuild": "^0.7.4",
"vite": "^2.9.12",
"vitest": "^0.15.2"
},
"eslintConfig": {
"extends": [
"@sudongyuer"
]
}
}