-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
70 lines (70 loc) · 1.43 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
68
69
70
{
"name": "taurpc",
"version": "1.7.0",
"description": "",
"main": "dist/index.cjs",
"repository": {
"url": "https://github.com/MatsDK/TauRPC",
"type": "git"
},
"type": "module",
"exports": {
"./package.json": "./package.json",
".": {
"import": "./dist/index.js",
"default": "./dist/index.cjs"
}
},
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "tsup",
"dev": "tsx watch src/index.ts",
"format": "dprint fmt",
"lint": "run-p lint:*",
"lint:format": "dprint check",
"lint:types": "tsc",
"lint:js": "eslint ."
},
"keywords": [],
"author": "MatsDK",
"license": "ISC",
"devDependencies": {
"@changesets/changelog-github": "^0.4.8",
"@changesets/cli": "^2.26.1",
"@types/eslint": "^8.40.0",
"@types/node": "^20.2.5",
"@typescript-eslint/eslint-plugin": "^5.59.7",
"@typescript-eslint/parser": "^5.59.7",
"dprint": "^0.36.1",
"eslint": "^8.41.0",
"eslint-plugin-dprint": "^0.4.0",
"npm-run-all": "^4.1.5",
"tsup": "^6.7.0",
"tsx": "^3.12.7",
"typescript": "^5.0.4"
},
"dependencies": {
"@tauri-apps/api": "^2.0.2"
},
"tsup": {
"entry": [
"src/index.ts"
],
"format": [
"esm",
"cjs"
],
"dts": {
"resolve": true
},
"external": [
".taurpc"
],
"splitting": true,
"clean": true
},
"packageManager": "[email protected]"
}