-
-
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://[email protected]/hmsk/vite-plugin-elm.git"
},
"keywords": [
"elm",
"vite"
],
"author": "Kengo Hamasaki <[email protected]>",
"contributors": [
"James Birtles <[email protected]>",
"Marc Walter <[email protected]>",
"Markus <[email protected]>",
"FranzSkuffka <[email protected]>",
"andrewgryan <[email protected]>",
"Steven Vandevelde <[email protected]>",
"Nathan Bleigh <[email protected]>",
"Nicolas Bétheuil <[email protected]>",
"Shane Kenney <[email protected]>",
"Lindsay Wardell <[email protected]>",
"Andreas Molitor <[email protected]>",
"Dave Keen <[email protected]>",
"notgne2 <[email protected]>",
"Jonas Coch <[email protected]>",
"Matt Polzin <[email protected]>",
"Ryan Schlesinger <[email protected]>",
"Zach Krzyzanowski <[email protected]>"
],
"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.8"
},
"peerDependencies": {
"vite": ">= 5.0.0"
}
}