-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.67 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.67 KB
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
{
"name": "@eik/vite-plugin",
"version": "2.0.21",
"description": "Vite plugin for loading import maps from a Eik server and applying the mapping to ECMAScript modules in preparation for upload to the same server.",
"type": "module",
"main": "./src/plugin.js",
"types": "./types/plugin.d.ts",
"files": [
"src",
"types"
],
"scripts": {
"clean": "rimraf node_modules types",
"test": "node --test --experimental-test-snapshots",
"test:update": "node --test --test-update-snapshots --experimental-test-snapshots",
"lint": "eslint .",
"lint:fix": "npm run lint -- --fix",
"start": "node --experimental-modules ./example/server.mjs",
"types": "run-s types:module types:test",
"types:module": "tsc",
"types:test": "tsc --project tsconfig.test.json"
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/eik-lib/vite-plugin.git"
},
"bugs": {
"url": "https://github.com/eik-lib/vite-plugin/issues"
},
"homepage": "https://github.com/eik-lib/vite-plugin#readme",
"publishConfig": {
"access": "public"
},
"keywords": [
"vite-plugin"
],
"author": "Finn.no",
"license": "MIT",
"engines": {
"node": ">=20"
},
"dependencies": {
"@eik/rollup-plugin": "5.0.35"
},
"devDependencies": {
"@eik/eslint-config": "1.0.25",
"@eik/prettier-config": "1.0.1",
"@eik/semantic-release-config": "1.0.15",
"@eik/typescript-config": "1.0.1",
"@types/node": "24.10.4",
"eslint": "9.39.4",
"fastify": "5.6.2",
"npm-run-all2": "8.0.4",
"prettier": "3.7.4",
"rimraf": "6.1.3",
"semantic-release": "25.0.2",
"typescript": "5.9.3",
"vite": "7.3.0"
}
}