-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.06 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.06 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
{
"name": "@collagejs/importmap",
"version": "0.2.0",
"description": "Provides parsing, validation and module resolution for import maps.",
"keywords": [
"importmap",
"collagejs",
"micro-frontend"
],
"homepage": "https://github.com/collagejs/importmap#readme",
"bugs": {
"url": "https://github.com/collagejs/importmap/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/collagejs/importmap.git"
},
"license": "MIT",
"author": {
"name": "José Pablo Ramírez Vargas",
"email": "webJose@gmail.com"
},
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"exports": {
".": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
}
},
"scripts": {
"build": "vite build && publint",
"clean": "rimraf dist",
"check": "tsc --noEmit",
"test": "vitest"
},
"devDependencies": {
"publint": "^0.3.16",
"rimraf": "^6.1.2",
"vite": "^7.0.0",
"vite-plugin-dts": "^4.0.0",
"vitest": "^3.0.0"
}
}