-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
66 lines (66 loc) · 2.07 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
{
"name": "tfjs-node-lambda",
"version": "2.0.32",
"description": "Loadable @tensorflow/tfjs-node compiled for lambda. Avoid native module errors and package size limits.",
"keywords": [
"tensorflow",
"nodejs",
"lambda"
],
"homepage": "https://github.com/jlarmstrongiv/tfjs-node-lambda#readme",
"bugs": {
"url": "https://github.com/jlarmstrongiv/tfjs-node-lambda/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jlarmstrongiv/tfjs-node-lambda.git"
},
"license": "MIT",
"author": "John L. Armstrong IV",
"main": "index.js",
"files": [
"package.json",
"index.js",
"matrix.json"
],
"scripts": {
"compile": "cross-env NODE_ENV=development LAMBDA=nodejs14.x TENSORFLOW=2.7.0 BINARY=nodejs14.x-tf2.7.0.br npx @vercel/ncc run .github/actions/compile/src/main.ts",
"matrix": "cross-env NODE_ENV=development npx @vercel/ncc run .github/actions/matrix/src/main.ts",
"release-version": "cross-env NODE_ENV=development npx @vercel/ncc run .github/actions/release-version/src/main.ts",
"test": "echo \"Error: no test specified\" && exit 1"
},
"dependencies": {},
"devDependencies": {
"@actions/core": "^1.2.6",
"@commitlint/cli": "^11.0.0",
"@commitlint/config-conventional": "^11.0.0",
"@types/deep-equal": "^1.0.1",
"@types/fs-extra": "^9.0.4",
"@types/prettier": "^2.1.5",
"@types/pump": "^1.1.0",
"@types/semantic-release": "^17.2.0",
"@types/tar": "^4.0.4",
"@vercel/ncc": "^0.25.1",
"axios": "^0.21.0",
"commitizen": "^4.2.2",
"cross-env": "^7.0.3",
"cspell": "^4.2.5",
"cz-conventional-changelog": "^3.3.0",
"deep-equal": "^2.0.4",
"fs-extra": "^9.0.1",
"get-latest-version": "^2.0.0",
"git-cz": "^4.7.5",
"husky": "^4.3.0",
"lint-staged": "^10.5.2",
"prettier": "^2.2.1",
"pump": "^3.0.0",
"semantic-release": "^17.3.0",
"sort-package-json": "^1.48.0",
"tar": "^6.0.5",
"typescript": "^4.1.2"
},
"optionalDependencies": {
"@tensorflow/tfjs": "^2.7.0",
"@tensorflow/tfjs-node": "^2.7.0"
}
}