-
-
Notifications
You must be signed in to change notification settings - Fork 21
/
package.json
89 lines (89 loc) · 2.11 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
{
"name": "@jspm/generator",
"description": "Package Import Map Generation Tool",
"license": "Apache-2.0",
"version": "2.4.1",
"types": "lib/generator.d.ts",
"type": "module",
"scripts": {
"prepublishOnly": "chomp build"
},
"imports": {
"#fetch": {
"source": {
"vscode": "./lib/common/fetch-vscode.js",
"deno": "./lib/common/fetch-deno.js",
"node": "./lib/common/fetch-node.js",
"default": "./lib/common/fetch-native.js"
},
"default": {
"vscode": "./dist/fetch-vscode.js",
"deno": "./dist/fetch-deno.js",
"node": "./dist/fetch-node.js",
"default": "./dist/fetch-native.js"
}
},
"#test/*": {
"source": "./test/*.js"
}
},
"exports": {
".": {
"types": "./lib/generator.d.ts",
"source": {
"deno": "./lib/generator-deno.js",
"default": "./lib/generator.js"
},
"deno": "./dist/generator-deno.js",
"default": "./dist/generator.js"
},
"./*.js": {
"source": "./lib/*.js"
}
},
"dependencies": {
"@babel/core": "^7.24.7",
"@babel/plugin-syntax-import-attributes": "^7.24.7",
"@babel/preset-typescript": "^7.24.7",
"@jspm/import-map": "^1.1.0",
"es-module-lexer": "^1.5.4",
"make-fetch-happen": "^8.0.14",
"sver": "^1.8.4"
},
"devDependencies": {
"@jspm/core": "^2.0.1",
"@swc/cli": "^0.1.65",
"@swc/core": "^1.7.35",
"@types/vscode": "^1.75.1",
"@vscode/test-electron": "^2.2.3",
"chalk": "^4.1.2",
"cross-env": "^7.0.3",
"kleur": "^4.1.5",
"lit-element": "^2.5.1",
"mocha": "^9.2.2",
"open": "^8.4.1",
"prettier": "^2.8.4",
"rollup": "^2.79.1",
"typescript": "^5.5.4"
},
"files": [
"dist",
"lib"
],
"repository": {
"type": "git",
"url": "git+https://github.com/jspm/generator.git"
},
"keywords": [
"jspm",
"import maps",
"es modules",
"cdn",
"package manager"
],
"author": "Guy Bedford",
"bugs": {
"url": "https://github.com/jspm/generator/issues"
},
"homepage": "https://github.com/jspm/generator#readme"
}