-
-
Notifications
You must be signed in to change notification settings - Fork 966
/
package.json
103 lines (103 loc) · 2.43 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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
{
"name": "riot",
"version": "9.4.3",
"description": "Simple and elegant component-based UI library",
"license": "MIT",
"engines": {
"node": ">=18.0.0"
},
"repository": "riot/riot",
"homepage": "https://riot.js.org/",
"author": "Gianluca Guarini <gianluca.guarini@gmail.com> (https://gianlucaguarini.com)",
"keywords": [
"custom tags",
"custom elements",
"web components",
"virtual dom",
"shadow dom",
"minimal",
"minimalist",
"client-side",
"framework",
"declarative",
"templating",
"template",
"data binding",
"mvc",
"model",
"view",
"controller",
"riotjs",
"riot.js"
],
"main": "riot.js",
"module": "esm/riot.js",
"type": "module",
"exports": {
".": {
"types": "./riot.d.ts",
"import": "./esm/riot.js",
"require": "./cjs/riot.cjs",
"browser": "./riot.js"
},
"./riot+compiler": {
"types": "./riot.d.ts",
"import": "./esm/riot_compiler.js",
"require": "./cjs/riot+compiler.cjs",
"browser": "./riot+compiler.js"
}
},
"files": [
"esm",
"cjs",
"riot.js",
"riot.d.ts",
"riot.min.js",
"riot+compiler.js",
"riot+compiler.min.js"
],
"scripts": {
"test": "make unit-test"
},
"jsnext:main": "esm/riot.js",
"sideEffects": false,
"types": "./riot.d.ts",
"dependencies": {
"@riotjs/dom-bindings": "^9.2.2"
},
"devDependencies": {
"@riotjs/compiler": "^9.2.0",
"@riotjs/prettier-config": "^1.1.0",
"@riotjs/register": "^9.1.0",
"@riotjs/util": "^2.4.0",
"@rollup/plugin-commonjs": "^28.0.1",
"@rollup/plugin-node-resolve": "^15.3.0",
"@testing-library/user-event": "^14.5.2",
"@wdio/cli": "^9.2.1",
"@wdio/local-runner": "^9.2.1",
"@wdio/mocha-framework": "^9.1.3",
"@wdio/sauce-service": "^9.2.1",
"@wdio/spec-reporter": "^9.1.3",
"bianco.attr": "^1.1.1",
"bianco.query": "^1.1.4",
"c8": "^10.1.2",
"chai": "^5.1.1",
"cumpa": "^2.0.1",
"curri": "^2.0.3",
"eslint": "^8.57.0",
"eslint-config-riot": "^4.1.2",
"eslint-plugin-import": "^2.29.1",
"jsdom": "^25.0.1",
"jsdom-global": "^3.0.2",
"mocha": "^10.7.3",
"prettier": "^3.3.3",
"rollup": "^4.24.0",
"rollup-plugin-riot": "^9.0.2",
"serve": "^14.2.4",
"sinon": "^19.0.2",
"sinon-chai": "^4.0.0",
"start-server-and-test": "^2.0.8",
"terser": "^5.36.0",
"typescript": "^5.6.3"
}
}