-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
95 lines (95 loc) · 2.76 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
83
84
85
86
87
88
89
90
91
92
93
94
95
{
"name": "@marko/vite",
"version": "5.0.13",
"description": "A Marko plugin for Vite",
"keywords": [
"loader",
"marko",
"plugin",
"transform",
"vite"
],
"homepage": "https://github.com/marko-js/vite",
"bugs": "https://github.com/marko-js/vite/issues",
"repository": {
"type": "git",
"url": "https://github.com/marko-js/vite"
},
"license": "MIT",
"author": "Dylan Piercey <[email protected]>",
"main": "./dist/index.mjs",
"types": "dist/index.d.ts",
"files": [
"dist",
"!**/__tests__",
"!**/*.tsbuildinfo"
],
"scripts": {
"build": "tsc -b && tsx build.mts",
"change": "changeset add",
"ci:test": "nyc npm test -- --forbid-only",
"format": "npm run lint:eslint -- --fix && npm run lint:prettier -- --write",
"lint": "tsc -b && npm run lint:eslint && npm run lint:prettier -- -l",
"lint:eslint": "eslint -f unix .",
"lint:prettier": "prettier \"./**/*{.ts,.js,.json,.md,.yml,rc}\"",
"prepare": "husky",
"release": "npm run build && changeset publish",
"report": "open ./coverage/lcov-report/index.html",
"test": "cross-env NODE_ENV=test mocha \"./src/**/__tests__/*.test.ts\"",
"test:inspect": "npm test -- --inspect",
"test:update": "npm test -- --update",
"version": "changeset version && npm i --package-lock-only"
},
"dependencies": {
"@chialab/cjs-to-esm": "^0.18.0",
"anymatch": "^3.1.3",
"domelementtype": "^2.3.0",
"domhandler": "^5.0.3",
"fast-glob": "^3.3.2",
"htmlparser2": "^9.1.0",
"resolve": "^1.22.8",
"resolve.exports": "^2.0.2"
},
"devDependencies": {
"@changesets/changelog-github": "^0.5.0",
"@changesets/cli": "^2.27.10",
"@eslint/js": "^9.15.0",
"@marko/compiler": "^5.38.1",
"@marko/fixture-snapshots": "^2.2.1",
"@marko/testing-library": "^6.2.0",
"@types/babel__core": "^7.20.5",
"@types/diff": "^6.0.0",
"@types/jsdom": "^21.1.7",
"@types/mocha": "^10.0.10",
"@types/node": "^22.10.0",
"@types/resolve": "^1.20.6",
"@types/serve-handler": "^6.1.4",
"cross-env": "^7.0.3",
"diff": "^7.0.0",
"esbuild": "^0.24.0",
"eslint": "^9.15.0",
"eslint-formatter-unix": "^8.40.0",
"eslint-plugin-simple-import-sort": "^12.1.1",
"globals": "^15.12.0",
"husky": "^9.1.7",
"jsdom": "^25.0.1",
"less": "^4.2.1",
"lint-staged": "^15.2.10",
"marko": "^5.36.1",
"mocha": "^10.8.2",
"mocha-snap": "^5.0.0",
"nyc": "^17.1.0",
"playwright": "^1.49.0",
"prettier": "^3.4.1",
"prettier-plugin-packagejson": "^2.5.6",
"serve-handler": "^6.1.6",
"tsx": "^4.19.2",
"typescript": "^5.7.2",
"typescript-eslint": "^8.16.0",
"vite": "^6.0.0"
},
"peerDependencies": {
"@marko/compiler": "^5",
"vite": "4 - 6"
}
}