-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 loc) · 1.62 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
{
"name": "@eik/vite-plugin",
"version": "1.0.1",
"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://[email protected]/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",
"dependencies": {
"@eik/rollup-plugin": "4.0.65"
},
"devDependencies": {
"@eik/eslint-config": "1.0.9",
"@eik/prettier-config": "1.0.1",
"@eik/semantic-release-config": "1.0.0",
"@eik/typescript-config": "1.0.0",
"@types/node": "22.10.2",
"eslint": "9.17.0",
"fastify": "5.2.1",
"npm-run-all2": "7.0.2",
"prettier": "3.3.3",
"rimraf": "6.0.1",
"semantic-release": "24.2.0",
"typescript": "5.7.2",
"vite": "6.0.9"
}
}