-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
69 lines (69 loc) · 1.52 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
69
{
"name": "@jihchi/vite-plugin-rescript",
"version": "6.0.0",
"keywords": [
"rollup-plugin",
"vite-plugin",
"ReScript",
"ReasonML",
"BuckleScript"
],
"homepage": "https://github.com/jihchi/vite-plugin-rescript",
"repository": {
"type": "git",
"url": "https://github.com/jihchi/vite-plugin-rescript.git"
},
"license": "MIT",
"author": "jihchi",
"type": "module",
"exports": {
".": {
"types": "./dist/index.d.ts",
"require": "./dist/index.cjs",
"import": "./dist/index.js"
}
},
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"prebuild": "pnpm clean",
"build": "tsup",
"clean": "rimraf dist",
"format": "sort-package-json && prettier --write .",
"prepack": "pnpm build",
"release": "np",
"start": "pnpm build -- --watch",
"test": "vitest run",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"chalk": "^5.3.0",
"execa": "^8.0.1",
"npm-run-path": "^6.0.0"
},
"devDependencies": {
"@sindresorhus/tsconfig": "^6.0.0",
"@types/node": "^22.8.1",
"@vitest/coverage-v8": "^2.0.5",
"np": "*",
"prettier": "3.3.3",
"rimraf": "^6.0.1",
"sort-package-json": "^2.10.1",
"tsup": "^8.1.0",
"typescript": "^5.6.3",
"vite": "^5.4.10",
"vitest": "^2.0.5"
},
"peerDependencies": {
"rescript": ">=9",
"vite": ">=5.1.0"
},
"packageManager": "[email protected]",
"engines": {
"node": ">=16.0"
}
}