-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
65 lines (65 loc) · 1.57 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
{
"name": "@riotjs/ssr",
"version": "9.0.0",
"type": "module",
"description": "Riot module to render riot components on the server",
"main": "index.cjs",
"module": "index.js",
"types": "index.d.ts",
"exports": {
"import": "./index.js",
"require": "./index.cjs",
"types": "./index.d.ts"
},
"files": [
"index.cjs",
"index.js",
"index.d.ts",
"src"
],
"scripts": {
"build": "npx rollup -c",
"prepublishOnly": "npm test",
"pretest": "npm run build",
"test": "npm run lint && NODE_OPTIONS=\"--loader @riotjs/register\" mocha test/*.spec.js",
"lint": "eslint src/*.js test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/riot/ssr.git"
},
"keywords": [
"riot",
"components",
"webcomponents",
"ssr",
"rendering"
],
"author": "Gianluca Guarini <[email protected]> (https://gianlucaguarini.com)",
"license": "MIT",
"bugs": {
"url": "https://github.com/riot/ssr/issues"
},
"homepage": "https://github.com/riot/ssr#readme",
"dependencies": {
"@riotjs/util": "^2.2.1",
"curri": "^2.0.3",
"linkedom": "^0.15.1"
},
"peerDependencies": {
"riot": "^6.0.0 || ^7.0.0 || ^9.0.0"
},
"devDependencies": {
"@riotjs/prettier-config": "^1.1.0",
"@riotjs/register": "^9.0.0",
"@rollup/plugin-commonjs": "^25.0.3",
"@rollup/plugin-node-resolve": "^15.1.0",
"chai": "^4.3.7",
"eslint": "^8.46.0",
"eslint-config-riot": "^4.1.0",
"mocha": "^10.2.0",
"prettier": "^3.0.0",
"riot": "^9.0.0",
"rollup": "^3.27.0"
}
}