forked from open-olive/loop-development-kit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
96 lines (96 loc) · 3.04 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
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
84
85
86
87
88
89
90
91
92
93
94
95
96
{
"name": "@oliveai/ldk",
"version": "4.0.0",
"description": "The Loop Development Kit for Olive Helps.",
"author": {
"name": "Olive AI, Inc."
},
"copyright": "Copyright (C) 2022 Olive AI, Inc. All rights reserved.",
"homepage": "https://github.com/open-olive/loop-development-kit#readme",
"license": "MIT",
"main": "dist/index.js",
"keywords": [
"olive",
"sidekick",
"loop",
"loops",
"loop-development-kit",
"ldk",
"sdk"
],
"scripts": {
"build": "npm run clear-dist && npm run compile",
"compile": "tsc",
"clear-dist": "rm -rf dist || del /s /q dist",
"prepush": "npm run build && npm run test && npm run lint",
"test": "jest",
"test-coverage": "jest --collectCoverage",
"test-watch": "jest --watchAll",
"lint": "./node_modules/.bin/eslint . --max-warnings 0 --ext .js,.ts",
"clear-docs": "(rm -rf generated-docs || del /s /q generated-docs) && mkdir generated-docs",
"build-docs": "./node_modules/.bin/typedoc --options typedoc.json",
"doc": "npm run clear-docs && npm run build-docs",
"publish-local": "npm unpublish @oliveai/ldk -f --registry http://localhost:4873 && npm publish --registry http://localhost:4873",
"prettier:all:write": "prettier --write './**/*.{js,jsx,ts,tsx,json,scss}'",
"prettier:all:check": "prettier --check './**/*.{js,jsx,ts,tsx,json,scss}'"
},
"repository": {
"type": "git",
"url": "git+https://github.com/open-olive/loop-development-kit.git"
},
"bugs": {
"url": "https://github.com/open-olive/loop-development-kit/issues"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"prettier --write"
],
"*.scss": [
"prettier --write"
],
"*.json": [
"prettier --write"
]
},
"devDependencies": {
"@types/jest": "^26.0.22",
"@types/terser-webpack-plugin": "^5.0.3",
"@types/webpack": "^5.28.0",
"@typescript-eslint/eslint-plugin": "^4.21.0",
"@typescript-eslint/parser": "^4.21.0",
"eslint": "^7.23.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-config-prettier": "^8.1.0",
"eslint-plugin-import": "^2.22.1",
"jest": "^27.3.1",
"prettier": "^2.4.1",
"ts-jest": "^27.0.7",
"typedoc": "^0.22.15",
"typescript": "^4.2.4",
"husky": "^7.0.4",
"lint-staged": "10.5.3"
},
"dependencies": {
"@babel/core": "^7.15.8",
"@babel/plugin-transform-async-to-generator": "^7.14.5",
"@babel/plugin-transform-destructuring": "^7.13.0",
"@babel/plugin-transform-react-jsx": "^7.16.7",
"@babel/plugin-transform-runtime": "^7.15.8",
"@babel/preset-env": "^7.15.8",
"@babel/runtime": "^7.13.10",
"@babel/runtime-corejs2": "^7.13.10",
"@types/react": "^17.0.14",
"@types/react-reconciler": "^0.26.3",
"ajv": "^8.10.0",
"babel-loader": "^8.2.2",
"core-js": "^3.11.1",
"react": "17.0.2",
"react-dom": "17.0.2",
"react-reconciler": "0.26.2",
"terser-webpack-plugin": "^5.1.1",
"text-encoding-shim": "^1.0.5",
"webpack": "^5.28.0",
"webpack-cli": "^4.5.0",
"webpack-merge": "^5.7.3"
}
}