-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
51 lines (51 loc) · 1.43 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
{
"name": "microcms-ts-sdk",
"version": "1.2.0",
"description": "wrapper for \"microcms-js-sdk\". More type-safe.",
"main": "./dist/index.cjs.js",
"module": "./dist/index.esm.js",
"types": "./dist/index.d.ts",
"files": [
"/dist"
],
"scripts": {
"build": "run-p build:*",
"build:esbuild": "node build.js",
"build:types": "tsc --declaration --emitDeclarationOnly --declarationDir './dist'",
"fix": "pnpm lint --fix & pnpm format",
"lint": "eslint .",
"format": "pnpm prettier --write",
"prettier": "prettier ."
},
"dependencies": {
"microcms-js-sdk": "^3.1.1"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^7.8.0",
"@typescript-eslint/parser": "^7.8.0",
"esbuild": "^0.21.1",
"eslint": "^8.57.0",
"eslint-config-standard": "^17.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-n": "^16.6.2",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-promise": "^6.1.1",
"npm-run-all": "^4.1.5",
"prettier": "^3.2.5",
"typescript": "^5.4.5"
},
"author": "hanetsuki<me@tsuki-lab.net>",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "git+https://github.com/tsuki-lab/microcms-ts-client.git"
},
"bugs": {
"url": "https://github.com/tsuki-lab/microcms-ts-client/issues"
},
"homepage": "https://github.com/tsuki-lab/microcms-ts-client#readme",
"keywords": [
"microcms",
"typescript"
]
}