-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
67 lines (67 loc) · 1.79 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
{
"name": "@jundao/zut",
"version": "0.0.0-development",
"description": "Pretty error overlay for browser side JS errors.",
"main": "./dist/index.js",
"type": "module",
"scripts": {
"check": "rome check src/",
"format": "rome format src/ --write",
"check-typescript": "tsc --noEmit",
"ca": "pnpm format && pnpm check && pnpm check-typescript",
"build": "tsup-node",
"dev": "tsup-node --watch",
"test:dev": "vite"
},
"homepage": "https://github.com/jundaoapp/zut",
"bugs": {
"url": "https://github.com/jundaoapp/zut/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jundaoapp/zut.git"
},
"files": [
"dist"
],
"license": "MIT",
"devDependencies": {
"@semantic-release/commit-analyzer": "^9.0.2",
"@semantic-release/github": "^8.0.7",
"@semantic-release/npm": "^9.0.2",
"@semantic-release/release-notes-generator": "^10.0.3",
"conventional-changelog-conventionalcommits": "^5.0.0",
"rome": "^12.0.0",
"semantic-release": "^20.1.1",
"tsup": "^6.7.0",
"typescript": "^5.0.4",
"vite": "^4.2.1"
},
"exports": {
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
}
},
"typesVersions": {},
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"dependencies": {
"@emotion/css": "^11.10.6",
"context": "^3.0.5",
"error-stack-parser": "^2.1.4",
"highlight.js": "^11.7.0",
"source-map": "github:mozilla/source-map#76be1e6795963a4ea72884d98356491fa5d45167",
"whatwg-url": "^12.0.1"
},
"pnpm": {
"//patchedDependencies": {
"[email protected]": "patches/[email protected]"
}
},
"publishConfig": {
"registry": "https://registry.npmjs.org/",
"access": "public"
},
"sideEffects": true
}