-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathpackage.json
More file actions
80 lines (80 loc) · 1.75 KB
/
package.json
File metadata and controls
80 lines (80 loc) · 1.75 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
{
"name": "@jihchi/vite-plugin-rescript",
"version": "8.0.0-beta.2",
"keywords": [
"rollup-plugin",
"vite-plugin",
"ReScript",
"ReasonML",
"BuckleScript"
],
"homepage": "https://github.com/jihchi/vite-plugin-rescript",
"repository": "github:jihchi/vite-plugin-rescript",
"license": "MIT",
"author": "jihchi",
"type": "module",
"exports": {
".": {
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"require": {
"types": "./dist/index.d.cts",
"default": "./dist/index.cjs"
}
}
},
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"prebuild": "pnpm clean",
"build": "tsdown",
"ci": "biome ci .",
"clean": "rimraf dist",
"format": "sort-package-json && biome format --write .",
"lint": "biome lint .",
"prepack": "pnpm build",
"release": "np",
"start": "pnpm build --watch",
"test": "vitest run",
"typecheck": "tsc"
},
"dependencies": {
"chalk": "^5.6.2",
"execa": "^9.6.1",
"npm-run-path": "^6.0.0"
},
"devDependencies": {
"@biomejs/biome": "^2.4.12",
"@sindresorhus/tsconfig": "^8.1.0",
"@types/node": "^25.6.0",
"@vitest/coverage-v8": "^3.2.4",
"np": "*",
"rimraf": "^6.1.3",
"sort-package-json": "^3.6.1",
"tsdown": "^0.21.9",
"typescript": "^6.0.3",
"vite": "^8.0.9",
"vitest": "^3.2.4"
},
"peerDependencies": {
"rescript": ">=12.0.0-beta.11",
"vite": ">=5.1.0"
},
"packageManager": "pnpm@10.14.0",
"engines": {
"node": ">=20"
},
"pnpm": {
"onlyBuiltDependencies": [
"@biomejs/biome",
"esbuild",
"rescript"
]
}
}