-
Notifications
You must be signed in to change notification settings - Fork 52
/
package.json
56 lines (56 loc) · 1.42 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
{
"name": "@kintone/plugin-manifest-validator",
"version": "10.2.2",
"author": {
"name": "Cybozu, Inc.",
"url": "https://cybozu.co.jp"
},
"engines": {
"node": ">=18"
},
"main": "dist/src/index.js",
"files": [
"manifest-schema.d.ts",
"manifest-schema.json",
"dist"
],
"types": "dist/src/index.d.ts",
"scripts": {
"start": "pnpm build --watch",
"prebuild": "pnpm clean",
"build": "tsc --build --force",
"postbuild": "pnpm gen-dts",
"gen-dts": "node script/generate-dts.js",
"test": "jest",
"test:ci": "jest --runInBand",
"lint": "eslint src --max-warnings 0",
"fix": "pnpm lint --fix",
"clean": "rimraf dist"
},
"dependencies": {
"ajv": "^8.17.1",
"ajv-formats": "^3.0.1",
"bytes": "^3.1.2"
},
"devDependencies": {
"@babel/preset-typescript": "^7.26.0",
"@types/bytes": "^3.1.4",
"babel-plugin-replace-ts-export-assignment": "^0.0.2",
"intelli-espower-loader": "^1.1.0",
"json-schema-to-typescript": "^15.0.2",
"power-assert": "^1.6.1"
},
"homepage": "https://github.com/kintone/js-sdk/tree/main/packages/plugin-manifest-validator#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/kintone/js-sdk.git",
"directory": "packages/plugin-manifest-validator"
},
"bugs": {
"url": "https://github.com/kintone/js-sdk/issues"
},
"keywords": [
"kintone"
],
"license": "MIT"
}