-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
52 lines (52 loc) · 1.27 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
{
"name": "@agility/content-fetch",
"version": "2.0.7",
"description": "JS/TS library for the Agility Fetch API",
"repository": {
"type": "git",
"url": "https://github.com/agility/agility-content-fetch-js-sdk.git"
},
"bugs": {
"url": "https://github.com/agility/agility-content-fetch-js-sdk.git/issues"
},
"homepage": "https://github.com/agility/agility-content-fetch-js-sdk.git#readme",
"main": "./dist/node.js",
"browser": "./dist/browser.js",
"module": "./dist/browser.js",
"types": "./dist/index.d.ts",
"engines": {
"node": ">= 18.0.0"
},
"scripts": {
"clean": "rimraf dist",
"build": "node build.js",
"prepare": "yarn build",
"test": "jest",
"generate-docs": "node_modules/.bin/jsdoc --configure .jsdoc.json --verbose"
},
"keywords": [
"typescript",
"agility",
"cms",
"headlesscms",
"fetch-sdk"
],
"author": "Agility CMS",
"contributors": [
"Kevin Tran",
"Joel Varty"
],
"license": "MIT",
"dependencies": {},
"devDependencies": {
"@types/jest": "^29.5.3",
"@types/node": "^18.11.9",
"agility-jsdoc-template": "1.0.3",
"esbuild": "^0.19.0",
"jest": "^29.6.2",
"npm-dts": "^1.3.12",
"rimraf": "^5.0.1",
"ts-jest": "^29.1.1",
"typescript": "^5.1.6"
}
}