Riot has two pieces of code that need to be updated before JSPM will run out of the box with this json file, and I have no idae how to otehrwise resolve them.
41 lines
664 B
JSON
41 lines
664 B
JSON
{
|
|
"main": "lib/server/index.js",
|
|
"format": "cjs",
|
|
"meta": {
|
|
"*": {
|
|
"globals": {
|
|
"process": "process"
|
|
}
|
|
},
|
|
"*.json": {
|
|
"format": "json"
|
|
},
|
|
"lib/browser/*": {
|
|
"format": "esm"
|
|
},
|
|
"lib/riot+compiler.js": {
|
|
"format": "esm"
|
|
},
|
|
"lib/riot.js": {
|
|
"format": "esm"
|
|
},
|
|
"lib/settings.js": {
|
|
"format": "esm"
|
|
},
|
|
"riot.min.js": {
|
|
"format": "amd"
|
|
},
|
|
"lib/server/index.js": {
|
|
"deps": [
|
|
"../../riot"
|
|
]
|
|
}
|
|
},
|
|
"map": {
|
|
"./lib/server": "./lib/server/index.js",
|
|
"./lib/server/index.js": {
|
|
"browser": "./riot.js"
|
|
}
|
|
}
|
|
}
|