-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
56 lines (56 loc) · 1.18 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
{
"name": "importly",
"version": "0.2.3",
"description": "importly generates import maps",
"license": "ISC",
"type": "module",
"files": [
"x",
"s"
],
"bin": {
"importly": "x/cli.js"
},
"scripts": {
"build": "run-s clean compile-typescript permissions",
"clean": "rm -rf x",
"compile-typescript": "tsc",
"permissions": "chmod +x x/cli.js",
"watch": "npm run -s compile-typescript -- -w",
"test": "node x/cli.js < package-lock.json > x/importmap.example.json",
"start": "serve"
},
"dependencies": {
"axios": "^1.6.0",
"json5": "^2.2.3",
"meow": "^12.1.1"
},
"devDependencies": {
"@types/node": "^20.8.10",
"npm-run-all": "^4.1.5",
"serve": "^14.2.1",
"typescript": "^5.2.2"
},
"author": "Chase Moskal <[email protected]>",
"repository": {
"type": "git",
"url": "git+https://github.com/chase-moskal/importly.git"
},
"bugs": {
"url": "https://github.com/chase-moskal/importly/issues"
},
"homepage": "https://github.com/chase-moskal/importly#readme",
"keywords": [
"importmap",
"importmaps",
"import-map",
"import-maps",
"es-modules",
"esm",
"modules",
"loader",
"generator",
"impotmap-generator",
"import-map-generator"
]
}