-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
48 lines (48 loc) · 1.04 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
{
"name": "propr",
"version": "1.0.3",
"private": false,
"description": "A proper way to interface with prepr.io",
"keywords": [
"prepr",
"prepr-sdk"
],
"author": {
"name": "Niels Mentink",
"url": "https://niels.ment.ink",
"email": "niels@ment.ink"
},
"packageManager": "pnpm@7.27.1",
"license": "MIT",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"exports": {
"./package.json": "./package.json",
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"default": "./dist/index.js"
}
},
"scripts": {
"build": "tsup src/index.ts --format cjs,esm --dts",
"lint": "tsc",
"ci": "turbo lint build",
"publish": "changeset publish",
"release": "turbo publish"
},
"devDependencies": {
"@changesets/cli": "^2.26.0",
"tsup": "^6.6.3",
"turbo": "^1.8.2",
"typescript": "^4.9.5"
},
"dependencies": {
"murmurhash": "^2.0.1",
"ofetch": "^1.0.1"
},
"volta": {
"node": "18.14.2"
}
}