forked from jihchi/vite-plugin-rescript
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 1.26 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
{
"name": "@jihchi/vite-plugin-rescript",
"author": "jihchi",
"homepage": "https://github.com/jihchi/vite-plugin-rescript",
"repository": {
"type": "git",
"url": "https://github.com/jihchi/vite-plugin-rescript.git"
},
"version": "4.0.1",
"license": "MIT",
"type": "module",
"source": "./src/index.ts",
"exports": {
"require": "./dist/index.cjs",
"default": "./dist/index.js"
},
"main": "./dist/index.js",
"module": "./dist/index.js",
"typings": "./dist/index.d.ts",
"keywords": [
"rollup-plugin",
"vite-plugin",
"ReScript",
"ReasonML",
"BuckleScript"
],
"files": [
"dist"
],
"engines": {
"node": "^14 || ^16 || ^18",
"npm": "^7 || ^8"
},
"scripts": {
"build": "tsup",
"format": "prettier --write src test",
"start": "tsup --watch",
"test": "vitest run"
},
"dependencies": {
"chalk": "^5.0.1",
"execa": "^6.1.0",
"npm-run-path": "^5.1.0"
},
"devDependencies": {
"@sindresorhus/tsconfig": "^3.0.1",
"@types/debug": "^4.1.7",
"@types/node": "^18.0.5",
"prettier": "2.7.1",
"tsup": "^6.1.3",
"typescript": "^4.7.4",
"vite": "^3.0.0",
"vitest": "^0.18.0"
},
"peerDependencies": {
"rescript": "^9 || ^10",
"vite": "^3"
}
}