-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 2.1 KB
/
package.json
File metadata and controls
64 lines (64 loc) · 2.1 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
53
54
55
56
57
58
59
60
61
62
63
64
{
"type": "module",
"name": "@denshya/tama",
"version": "0.8.2",
"private": false,
"sideEffects": false,
"main": "build/index.js",
"types": "build/index.d.ts",
"files": [
"jsx",
"build"
],
"scripts": {
"dev": "vite",
"build": "vite build && bun build:types",
"build:watch": "vite build --watch && bun build:types --watch",
"build:types": "tsup src/index.ts src/jsx/JSX.shared.ts --outDir build --format esm --dts-only --tsconfig tsconfig.build.json",
"preview": "vite preview",
"release:patch": "npm version patch && bun run build && export GITHUB_TOKEN=${GITHUB_TOKEN} && npm publish",
"stats": "bun stats:treemap && bun stats:sunburst",
"stats:treemap": "vite-bundle-visualizer --sourcemap -o ./stats/treemap.html",
"stats:sunburst": "vite-bundle-visualizer -o ./stats/sunburst.html -t sunburst",
"stats:network": "vite-bundle-visualizer -o ./stats/network.html -t network",
"test-pack": "npm version patch --git-tag-version false && npm pack"
},
"dependencies": {
"node-group": "^0.1.4"
},
"peerDependencies": {
"type-fest": ">=4.31.0",
"@denshya/reactive": ">=0.7.0"
},
"devDependencies": {
"@types/bun": "latest",
"@typescript-eslint/eslint-plugin": "^8.46.2",
"@typescript-eslint/parser": "^8.46.2",
"eslint": "9.38.0",
"eslint-plugin-simple-import-sort": "^12.1.1",
"eslint-plugin-unused-imports": "^4.1.4",
"happy-dom": "^20.0.11",
"tsup": "^8.3.5",
"typescript": "^5.9.2",
"vite": "^7.1.11",
"vite-bundle-visualizer": "^1.2.1",
"vite-plugin-externalize-deps": "^0.9.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/pinely-international/tama.git"
},
"description": "Light weight, zero-configuration, component-based Web Inflator (JSX parser) for building UI. | Alternative to React or SolidJS.",
"keywords": [
"framework",
"ui",
"inflator",
"web"
],
"author": "FrameMuse",
"license": "MIT",
"bugs": {
"url": "https://github.com/pinely-international/tama/issues"
},
"homepage": "https://github.com/pinely-international/tama#readme"
}