-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.49 KB
/
Copy pathpackage.json
File metadata and controls
50 lines (50 loc) · 1.49 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
{
"name": "wompo",
"description": "Wompo is a performant React-like JS library to create Web-Components that are re-usable, shareable, and beginner-friendly.",
"version": "2.0.2",
"type": "module",
"module": "./dist/wompo.js",
"main": "./dist/wompo.js",
"types": "./dist/wompo.d.ts",
"author": "Lorenzo Lannino <lanninolore@gmail.com>",
"license": "MIT",
"scripts": {
"dev": "esbuild ts/wompo.ts ts/ssr/index.ts ts/wompo/hydrate.ts ts/ssr/devalue.ts --bundle --format=esm --splitting --sourcemap --watch --outdir=dist --allow-overwrite",
"build": "tsc & esbuild ts/wompo.ts ts/ssr/index.ts ts/wompo/hydrate.ts ts/ssr/devalue.ts --bundle --format=esm --splitting --minify --outdir=dist --allow-overwrite",
"test": "vitest run",
"perf": "npx tachometer --config tachometer.json"
},
"repository": {
"type": "git",
"url": "git+https://github.com/wompojs/wompo.git"
},
"bugs": {
"url": "https://github.com/wompojs/wompo/issues"
},
"homepage": "https://wompo.dev",
"exports": {
".": {
"types": "./dist/wompo.d.ts",
"default": "./dist/wompo.js"
},
"./ssr": {
"types": "./dist/ssr/index.d.ts",
"default": "./dist/ssr/index.js"
},
"./hydrate": {
"types": "./dist/wompo/hydrate.d.ts",
"default": "./dist/wompo/hydrate.js"
},
"./devalue": {
"types": "./dist/ssr/devalue.d.ts",
"default": "./dist/ssr/devalue.js"
}
},
"devDependencies": {
"esbuild": "0.25.0",
"happy-dom": "^20.9.0",
"tachometer": "^0.7.0",
"ts-loader": "^9.4.3",
"vitest": "^4.1.7"
}
}