-
-
Notifications
You must be signed in to change notification settings - Fork 31
/
Copy pathpackage.json
82 lines (82 loc) · 2.43 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
70
71
72
73
74
75
76
77
78
79
80
81
82
{
"name": "vite-plugin-elm",
"version": "3.1.0-2",
"description": "Compile Elm with vite",
"exports": "./dist/index.js",
"type": "module",
"files": [
"dist"
],
"types": "./dist/index.d.ts",
"scripts": {
"dev": "tsc -w -p .",
"build": "rm -rf dist && tsc -p .",
"lint": "eslint . --max-warnings 0",
"prettier": "prettier --check .",
"prepare": "npm run build",
"build:example": "cd ./example && npm i && npm run build",
"build:example:eol2": "cd ./example && npm run build:eol2",
"test": "vitest",
"test:ci": "vitest run",
"test-server:dev": "cd ./example && npm run dev -- --port 8936",
"test-server:preview": "cd ./example && npm run preview -- --port 8938",
"cypress:prepare": "run-p test-server:*",
"cypress:open": "cypress open",
"cypress:run": "cypress run"
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/hmsk/vite-plugin-elm.git"
},
"keywords": [
"elm",
"vite"
],
"author": "Kengo Hamasaki <k.hamasaki@gmail.com>",
"contributors": [
"James Birtles <jamesb@airca.st>",
"Marc Walter <walter.marc@outlook.com>",
"Markus <mapmarkus@gmail.com>",
"FranzSkuffka <jan@funklang.com>",
"andrewgryan <andrew.ryan@metoffice.gov.uk>",
"Steven Vandevelde <icid.asset@gmail.com>",
"Nathan Bleigh <nathan.bleigh@gmail.com>",
"Nicolas Bétheuil <wadouk@gmail.com>",
"Shane Kenney <me@shanek.org>",
"Lindsay Wardell <lindsay.wardell@noredink.com>",
"Andreas Molitor <andreas.molitor@andrena.de>",
"Dave Keen <dev@ruffness.com>",
"notgne2 <gen2@gen2.space>",
"Jonas Coch <jonas.coch@bellroy.com>",
"Matt Polzin <mpolzin@workwithopal.com>",
"Ryan Schlesinger <ryan@ryanschlesinger.com>",
"Zach Krzyzanowski <zkrzyz@gmail.com>"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/hmsk/vite-plugin-elm/issues"
},
"homepage": "https://github.com/hmsk/vite-plugin-elm",
"dependencies": {
"acorn": "^8.0.0",
"acorn-walk": "^8.0.0",
"elm-esm": "1.1.4",
"find-up": "^7.0.0",
"node-elm-compiler": "5.0.6"
},
"devDependencies": {
"@types/node": "18.19.60",
"cypress": "13.15.1",
"eslint": "8.57.1",
"eslint-config-prettier": "9.1.0",
"npm-run-all": "4.1.5",
"prettier": "3.3.3",
"typescript": "5.6.3",
"typescript-eslint": "^8.0.1",
"vite": "5.4.9",
"vitest": "2.1.4"
},
"peerDependencies": {
"vite": ">= 5.0.0"
}
}