-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.12 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.12 KB
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
{
"name": "snapp-kit",
"version": "3.0.1",
"description": "A global build tool for Snapp Framework. Install once, use everywhere. Zero dependencies, zero configuration - just compile your JSX/TSX files to vanilla JavaScript.",
"main": "bin/main.js",
"bin": {
"snapp": "./bin/main.js"
},
"type": "module",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [
"snapp-kit",
"snapp",
"kit",
"jsx",
"tsx",
"build-tool",
"esbuild",
"cli",
"framework",
"javascript",
"typescript",
"live-server"
],
"author": "kigemmanuel",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/kigemmanuel/Snapp.git"
},
"bugs": {
"url": "https://github.com/kigemmanuel/Snapp.git/issues"
},
"homepage": "https://github.com/kigemmanuel/Snapp.git",
"engines": {
"node": ">=14.0.0"
},
"files": [
"bin/",
"README.md",
"LICENSE"
],
"preferGlobal": true,
"dependencies": {
"@compodoc/live-server": "^1.2.3",
"chalk": "^5.6.2",
"esbuild": "^0.25.12",
"fs-extra": "^11.3.2"
}
}