forked from V1RE/propr
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
63 lines (63 loc) · 1.62 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
{
"name": "@2digits/propr",
"version": "1.0.6",
"description": "A proper way to interface with prepr.io",
"license": "MIT",
"private": false,
"repository": {
"type": "git",
"url": "https://github.com/2digits-agency/propr"
},
"author": {
"name": "Niels Mentink",
"url": "https://niels.ment.ink",
"email": "[email protected]"
},
"keywords": [
"prepr",
"prepr-sdk"
],
"type": "module",
"main": "./dist/index.cjs",
"exports": {
"./package.json": "./package.json",
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"default": "./dist/index.cjs"
}
},
"module": "./dist/index.mjs",
"files": [
"dist"
],
"scripts": {
"build": "unbuild",
"types": "tsc --noEmit",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"format": "bash -c 'prettier \"**/*\" --ignore-unknown --ignore-path <(cat .gitignore .prettierignore) --check'",
"format:fix": "bash -c 'prettier \"**/*\" --ignore-unknown --ignore-path <(cat .gitignore .prettierignore) --write'",
"publish": "changeset publish",
"release": "turbo publish"
},
"packageManager": "[email protected]",
"sideEffects": false,
"types": "./dist/index.d.ts",
"dependencies": {
"murmurhash": "^2.0.1",
"ofetch": "^1.0.1"
},
"devDependencies": {
"@2digits/eslint-config": "^0.1.0",
"@2digits/prettier-config": "^0.1.0",
"@2digits/tsconfig": "^0.0.1",
"@changesets/cli": "^2.26.0",
"eslint": "^8.36.0",
"prettier": "^2.8.4",
"turbo": "^1.8.3",
"typescript": "^4.9.5",
"unbuild": "^1.1.2"
},
"prettier": "@2digits/prettier-config"
}