-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 865 Bytes
/
package.json
File metadata and controls
43 lines (43 loc) · 865 Bytes
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
{
"name": "@mutablejs/demo",
"version": "0.0.1",
"description": "mutableJS demo package - Todo app",
"keywords": [
"mutable DOM",
"reactive DOM",
"DOM mutability demo",
"DOM reactivity demo",
"Todo demo app",
"front-end",
"development",
"ui",
"user interface",
"components",
"javascript",
"typescript",
"dom",
"dom manipulation",
"web",
"DOM mutability"
],
"main": "index.html",
"scripts": {
"start": "npx vite",
"build": "npx vite build"
},
"author": "Nikita 'donnikitos' Nitichevski <me@donnikitos.com> (https://donnikitos.com/)",
"repository": {
"type": "git",
"url": "https://github.com/mutableJS/demo"
},
"license": "MIT",
"devDependencies": {
"@types/node": "^18.18.5",
"typescript": "^4.9.5",
"vite": "^2.9.16"
},
"dependencies": {
"@mutablejs/core": "^0.2.1",
"@mutablejs/dom": "^0.3.2"
}
}