-
Notifications
You must be signed in to change notification settings - Fork 30
/
package.json
55 lines (55 loc) · 1.36 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
{
"name": "microcms-js-sdk",
"version": "3.1.2",
"description": "JavaScript SDK Client for microCMS.",
"engines": {
"node": ">=18.0.0"
},
"main": "./dist/microcms-js-sdk.js",
"module": "./dist/esm/microcms-js-sdk.js",
"unpkg": "./dist/umd/microcms-js-sdk.js",
"types": "./dist/microcms-js-sdk.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/microcmsio/microcms-js-sdk.git"
},
"author": "microCMS",
"license": "Apache-2.0",
"keywords": [
"JavaScript",
"node",
"SDK",
"microCMS"
],
"scripts": {
"build": "tsup",
"postbuild": "mkdir -p ./dist/umd/ && cp -pR ./dist/iife/* ./dist/umd",
"lint": "eslint ./src",
"lint:fix": "eslint --fix ./src",
"test": "jest --coverage=false",
"test:coverage": "jest --coverage=true"
},
"files": [
"dist"
],
"dependencies": {
"async-retry": "^1.3.3"
},
"devDependencies": {
"@swc/core": "^1.4.7",
"@types/async-retry": "^1.4.8",
"@types/jest": "^29.5.12",
"@types/node": "^18.19.14",
"@typescript-eslint/eslint-plugin": "^7.2.0",
"@typescript-eslint/parser": "^7.2.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-jest": "^27.9.0",
"jest": "^29.7.0",
"msw": "^2.2.3",
"prettier": "^3.2.5",
"ts-jest": "^29.1.2",
"tsup": "^8.0.2",
"typescript": "^5.4.2"
}
}