-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.74 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.74 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
{
"type": "module",
"name": "@denshya/reactive",
"version": "0.10.0",
"private": false,
"main": "build/index.js",
"types": "build/index.d.ts",
"files": [
"build",
"globals.d.ts"
],
"scripts": {
"dev": "vite",
"build": "vite build && bun build:types",
"build:types": "tsup src/index.ts src/globals.ts --outDir build --format esm --dts-only --tsconfig tsconfig.build.json",
"preview": "vite preview",
"release:patch": "npm version patch && bun run build && 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",
"prepublish": "bun test"
},
"devDependencies": {
"@types/bun": "latest",
"@typescript-eslint/eslint-plugin": "^8.19.0",
"@typescript-eslint/parser": "^8.19.0",
"eslint": "9.17.0",
"eslint-plugin-simple-import-sort": "^12.1.1",
"eslint-plugin-unused-imports": "^4.1.4",
"mitata": "^1.0.34",
"tsup": "^8.3.6",
"type-fest": "^4.40.1",
"typescript": "^5.7.3",
"vite": "^6.3.5",
"vite-bundle-visualizer": "^1.2.1",
"vite-plugin-externalize-deps": "^0.8.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/denshya/reactive.git"
},
"description": "Light-weight Observable Structures for modeling data Reactive",
"keywords": [
"state",
"signal",
"observable",
"helpers"
],
"author": "FrameMuse",
"license": "MIT",
"bugs": {
"url": "https://github.com/denshya/reactive/issues"
},
"homepage": "https://github.com/denshya/reactive#readme"
}