-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
53 lines (53 loc) · 1.31 KB
/
package.json
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
{
"name": "preact-perf-profiler",
"version": "2.0.1",
"description": "A utility for measuring rendering performance with Preact",
"author": "Klemen Slavič <[email protected]> (https://krofdrakula.github.io/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/krofdrakula/preact-perf-profiler/issues"
},
"homepage": "https://github.com/krofdrakula/preact-perf-profiler#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/krofdrakula/preact-perf-profiler.git"
},
"keywords": [
"preact",
"performance"
],
"type": "module",
"main": "dist/index.umd.cjs",
"umd:main": "dist/index.umd.cjs",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.umd.cjs"
}
},
"files": [
"./dist",
"./src",
"./README.md",
"./LICENSE",
"./package.json",
"./tsconfig.json"
],
"scripts": {
"build": "vite build",
"build-demo": "vite build --config vite.config.demo.js",
"dev": "vite --config vite.config.demo.js",
"prepublish": "vite build"
},
"peerDependencies": {
"preact": ">=10"
},
"devDependencies": {
"preact": ">=10",
"vite": "^4.4.3",
"vite-plugin-dts": "^3.2.0"
}
}