-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
83 lines (83 loc) · 2.1 KB
/
package.json
File metadata and controls
83 lines (83 loc) · 2.1 KB
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
71
72
73
74
75
76
77
78
79
80
81
82
83
{
"name": "@permanentorg/sdk",
"version": "0.10.1",
"description": "Functional Node.js SDK for Permanent.org",
"module": "dist/esm/index.js",
"main": "dist/cjs/index.js",
"scripts": {
"lint": "npm run lint:eslint && npm run lint:prettier && npm run lint:tsc",
"lint:eslint": "eslint ./src --ext .ts",
"lint:prettier": "prettier . --check",
"lint:tsc": "tsc --noEmit",
"format": "npm run format:prettier && npm run format:eslint",
"format:prettier": "prettier --write .",
"format:eslint": "eslint ./src --fix || true",
"build": "npm run build:node && npm run build:browser",
"build:node": "tsc -p tsconfig.node.json",
"build:browser": "tsc -p tsconfig.browser.json",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/PermanentOrg/permanent-sdk.git"
},
"funding": "https://permanent.org/donate/",
"author": {
"name": "Permanent.org",
"email": "engineers@permanent.org",
"url": "https://www.permanent.org/"
},
"contributors": [
{
"name": "Natalie Martin"
},
{
"name": "Daniel Schultz",
"email": "slifty@gmail.com",
"url": "https://slifty.com"
},
{
"name": "Fon E. Noel",
"url": "https://github.com/fenn-cs"
}
],
"license": "MIT",
"bugs": {
"url": "https://github.com/PermanentOrg/permanent-sdk/issues"
},
"engines": {
"node": ">=20.0"
},
"files": [
"dist"
],
"homepage": "https://github.com/PermanentOrg/permanent-sdk#readme",
"devDependencies": {
"@tsconfig/esm": "^1.0.0",
"@tsconfig/node20": "^20.1.4",
"@types/jest": "^30.0.0",
"@types/node": "^20.17.19",
"@types/node-fetch": "^2.6.1",
"eslint": "^9.30.1",
"eslint-config-love": "^151.0.0",
"eslint-config-prettier": "^10.1.5",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-jest": "^29.0.1",
"eslint-plugin-sort-exports": "^0.9.1",
"jest": "^30.0.4",
"nock": "^14.0.1",
"prettier": "^3.6.2",
"ts-jest": "^29.4.9",
"typescript": "^6.0.2",
"typescript-eslint": "^8.36.0"
},
"dependencies": {
"ajv": "^8.11.0",
"fetch-retry": "^6.0.0",
"form-data": "^4.0.0",
"node-fetch": "^2.6.7"
},
"publishConfig": {
"access": "public"
}
}