forked from zemlyansky/gpt-tfjs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 955 Bytes
/
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
{
"name": "gpt-tfjs",
"version": "0.0.5",
"description": "GPT model implemented with Tensorflow.js",
"main": "index.js",
"scripts": {
"test": "jest",
"build": "webpack",
"serve": "php -S localhost:8080",
"watch": "jest --watchAll --testPathIgnorePatterns \"backup\" \"test_model_1\" \"test_model_2\""
},
"author": "Anton Zemlyansky",
"license": "MIT",
"dependencies": {
"@mapbox/node-pre-gyp": "^1.0.10",
"@tensorflow/tfjs": "^4.4.0"
},
"devDependencies": {
"@tensorflow/tfjs-node": "^4.4.0",
"@tensorflow/tfjs-node-gpu": "^4.4.0",
"jest": "^29.5.0",
"nodemon": "^2.0.22",
"webpack": "^5.79.0",
"webpack-cli": "^5.0.1"
},
"repository": {
"type": "git",
"url": "https://github.com/zemlyansky/gpt-tfjs.git"
},
"keywords": [
"gpt",
"transformers",
"tfjs"
],
"jest": {
"collectCoverage": true,
"modulePathIgnorePatterns": [
"temp/"
]
}
}