-
Notifications
You must be signed in to change notification settings - Fork 3
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": "@snappjs/core",
"version": "3.0.0",
"description": "A lightweight JSX-like framework for vanilla JavaScript with full TypeScript support",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"require": "./dist/index.js",
"import": "./dist/index.mjs"
}
},
"files": [
"dist",
"src",
"README.md",
"LICENSE"
],
"scripts": {
"build": "tsup src/index.ts --format cjs,esm --dts --clean",
"dev": "tsup src/index.ts --format cjs,esm --dts --watch"
},
"keywords": [
"framework",
"jsx",
"frontend",
"reactive",
"typescript",
"dom",
"vanilla-js",
"lightweight"
],
"author": "kigemmanuel",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/SnappJS/snapp.git"
},
"bugs": {
"url": "https://github.com/SnappJS/snapp/issues"
},
"homepage": "https://github.com/SnappJS/snapp",
"devDependencies": {
"tsup": "^8.5.1",
"typescript": "^5.9.3"
},
"engines": {
"node": ">=14.0.0"
}
}